{"id":468,"date":"2023-07-29T19:32:18","date_gmt":"2023-07-29T19:32:18","guid":{"rendered":"https:\/\/statorials.org\/ko\/r-max%e1%84%82%e1%85%b3%e1%86%ab-%e1%84%8b%e1%85%ad%e1%84%8b%e1%85%b5%e1%86%ab%e1%84%8b%e1%85%a6-%e1%84%8c%e1%85%ae%e1%86%bc%e1%84%8b%e1%85%ad%e1%84%92%e1%85%a1%e1%84%8c%e1%85%b5-%e1%84%8b%e1%85%a1\/"},"modified":"2023-07-29T19:32:18","modified_gmt":"2023-07-29T19:32:18","slug":"r-max%e1%84%82%e1%85%b3%e1%86%ab-%e1%84%8b%e1%85%ad%e1%84%8b%e1%85%b5%e1%86%ab%e1%84%8b%e1%85%a6-%e1%84%8c%e1%85%ae%e1%86%bc%e1%84%8b%e1%85%ad%e1%84%92%e1%85%a1%e1%84%8c%e1%85%b5-%e1%84%8b%e1%85%a1","status":"publish","type":"post","link":"https:\/\/statorials.org\/ko\/r-max%e1%84%82%e1%85%b3%e1%86%ab-%e1%84%8b%e1%85%ad%e1%84%8b%e1%85%b5%e1%86%ab%e1%84%8b%e1%85%a6-%e1%84%8c%e1%85%ae%e1%86%bc%e1%84%8b%e1%85%ad%e1%84%92%e1%85%a1%e1%84%8c%e1%85%b5-%e1%84%8b%e1%85%a1\/","title":{"rendered":"R\uc758 \uc624\ub958 \ud574\uc11d: &#39;max&#39;\ub294 \uc694\uc778\uc5d0 \uc911\uc694\ud558\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4."},"content":{"rendered":"<p><\/p>\n<hr>\n<p><span style=\"color: #000000;\">\uc5b4\ub290 \uc2dc\uc810\uc5d0\uc11c R\uc5d0\uc11c \ub2e4\uc74c\uacfc \uac19\uc740 \uc624\ub958\uac00 \ubc1c\uc0dd\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4.<\/span><\/p>\n<pre style=\"background-color: #e5e5e5; font-size: 15px;\"> <strong>'max' not meaningful for factors<\/strong><\/pre>\n<p> <span style=\"color: #000000;\">\uc774\ub294 \ub2e8\uc21c\ud788 \ud074\ub798\uc2a4 <strong>\uc694\uc778<\/strong> \uc5d0 \uc18d\ud558\ub294 \ubcc0\uc218\uc758 &#8220;\ucd5c\ub300&#8221;\ub97c \ucde8\ud558\ub824\uace0 \ud55c\ub2e4\ub294 \uac83\uc744 \ub098\ud0c0\ub0c5\ub2c8\ub2e4.<\/span><\/p>\n<p> <span style=\"color: #000000;\">\uc608\ub97c \ub4e4\uc5b4, \ub2e4\uc74c \ubca1\ud130\uc758 \ucd5c\ub300\uac12\uc744 \ucde8\ud558\ub824\uace0 \ud558\uba74 \uc774 \uc624\ub958\uac00 \uc0dd\uc131\ub429\ub2c8\ub2e4.<\/span><\/p>\n<pre style=\"background-color: #e5e5e5; font-size: 15px;\"> <strong><span style=\"color: #008080;\">#create a vector of class <em>vector\n<\/em><\/span>factor_vector &lt;- as.factor(c(1, 7, 12, 14, 15))\n\n<span style=\"color: #008080;\">#attempt to find max value in the vector<\/span>\nmax(factor_vector)\n\n#Error in Summary.factor(1:5, na.rm = FALSE): \n# 'max' not meaningful for factors<\/strong><\/pre>\n<p> <span style=\"color: #000000;\">\uc815\uc758\uc5d0 \ub530\ub974\uba74 \uc694\uc778 \ubca1\ud130\uc758 \uac12\uc740 \uba85\ubaa9 \ud074\ub798\uc2a4\uc5d0 \uc18d\ud569\ub2c8\ub2e4. \uc989, \uac12\uc758 \uc758\ubbf8 \uc788\ub294 \uc21c\uc11c\uac00 \uc5c6\uc74c\uc744 \uc758\ubbf8\ud569\ub2c8\ub2e4. \ub530\ub77c\uc11c \ucc3e\uc744 \uc218 \uc788\ub294 &#8220;\ucd5c\ub300&#8221; \uac12\uc774 \uc5c6\uc2b5\ub2c8\ub2e4.<\/span><\/p>\n<p> <span style=\"color: #000000;\">\uc694\uc778 \ubca1\ud130\uc758 \ucd5c\ub300\uac12\uc744 \ucc3e\ub294 \uac04\ub2e8\ud55c \ud574\uacb0\ucc45\uc740 \uc774\ub97c \ubb38\uc790 \ubca1\ud130\ub85c \ubcc0\ud658\ud55c \ub2e4\uc74c \uc22b\uc790 \ubca1\ud130\ub85c \ubcc0\ud658\ud558\ub294 \uac83\uc785\ub2c8\ub2e4.<\/span><\/p>\n<pre style=\"background-color: #e5e5e5; font-size: 15px;\"> <strong><span style=\"color: #008080;\">#convert factor vector to numeric vector and find the max value<\/span>\nnew_vector &lt;- as.numeric(as.character(factor_vector))\nmax(new_vector)\n\n#[1] 15<\/strong><\/pre>\n<p> <span style=\"color: #000000;\">\uc694\uc778 \ubca1\ud130\uc5d0 \ub2e8\uc21c\ud788 \uc694\uc778 \uc774\ub984\ub9cc \ud3ec\ud568\ub418\uc5b4 \uc788\uc73c\uba74 \uc694\uc778 \ubca1\ud130\ub97c \uc22b\uc790 \ubca1\ud130\ub85c \ubcc0\ud658\ud55c \ud6c4\uc5d0\ub3c4 \ucd5c\ub300\uac12\uc744 \ucc3e\uc744 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4. \uc694\uc778 \ubaa9\ub85d\uc758 &#8220;\ucd5c\ub300\uac12&#8221;\uc744 \ucc3e\ub294 \ub370 \uc544\ubb34\ub7f0 \uc758\ubbf8\uac00 \uc5c6\uae30 \ub54c\ubb38\uc785\ub2c8\ub2e4. \uc774\ub984.<\/span><\/p>\n<pre style=\"background-color: #e5e5e5; font-size: 15px;\"> <strong><span style=\"color: #008080;\">#create factor vector with names of factors<\/span>\nfactor_vector &lt;- as.factor(c(\"first\", \"second\", \"third\"))\n\n<span style=\"color: #008080;\">#attempt to convert factor vector into numeric vector and find max value\n<\/span>new_vector &lt;- as.numeric(as.character(factor_vector))\nmax(new_vector)\n\n#Warning message:\n#NAs introduced by coercion \n#[1] NA<\/strong><\/pre>\n<p> <span style=\"color: #000000;\">R\uc740 \ubb38\uc81c \uc5c6\uc774 \ucd5c\ub300 \uc22b\uc790 \ubca1\ud130, \ub0a0\uc9dc \ubca1\ud130 \ubc0f \ubb38\uc790 \ubca1\ud130\ub97c \ucc3e\uc744 \uc218 \uc788\ub2e4\ub294 \uc810\uc5d0 \uc720\uc758\ud574\uc57c \ud569\ub2c8\ub2e4.<\/span><\/p>\n<pre style=\"background-color: #e5e5e5; font-size: 15px;\"> <strong>numeric_vector &lt;- c(1, 2, 12, 14)\nmax(numeric_vector)\n\n#[1] 14\n\ncharacter_vector &lt;- c(\"a\", \"b\", \"f\")\nmax(character_vector)\n\n#[1] \u201cf\u201d\n\ndate_vector &lt;- as.Date(c(\"2019-01-01\", \"2019-03-05\", \"2019-03-04\"))\nmax(date_vector)\n\n#[1] \"2019-03-05\"\n<\/strong><\/pre>\n<p> <span style=\"color: #000000;\">\ub530\ub77c\uc11c \ubca1\ud130\uc5d0\uc11c \ucd5c\ub300\uac12\uc744 \ucc3e\uc73c\ub824\ub294 \uacbd\uc6b0 \ubca1\ud130 \uc720\ud615\uc774 <strong>Factor<\/strong> \uac00 \uc544\ub2cc\uc9c0 \ud655\uc778\ud558\uc138\uc694.<\/span><\/p>\n","protected":false},"excerpt":{"rendered":"<p>\uc5b4\ub290 \uc2dc\uc810\uc5d0\uc11c R\uc5d0\uc11c \ub2e4\uc74c\uacfc \uac19\uc740 \uc624\ub958\uac00 \ubc1c\uc0dd\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4. &#8216;max&#8217; not meaningful for factors \uc774\ub294 \ub2e8\uc21c\ud788 \ud074\ub798\uc2a4 \uc694\uc778 \uc5d0 \uc18d\ud558\ub294 \ubcc0\uc218\uc758 &#8220;\ucd5c\ub300&#8221;\ub97c \ucde8\ud558\ub824\uace0 \ud55c\ub2e4\ub294 \uac83\uc744 \ub098\ud0c0\ub0c5\ub2c8\ub2e4. \uc608\ub97c \ub4e4\uc5b4, \ub2e4\uc74c \ubca1\ud130\uc758 \ucd5c\ub300\uac12\uc744 \ucde8\ud558\ub824\uace0 \ud558\uba74 \uc774 \uc624\ub958\uac00 \uc0dd\uc131\ub429\ub2c8\ub2e4. #create a vector of class vector factor_vector &lt;- as.factor(c(1, 7, 12, 14, 15)) #attempt to find max value in [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[20],"tags":[],"class_list":["post-468","post","type-post","status-publish","format-standard","hentry","category-20"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v21.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>R\uc758 \uc624\ub958 \ud574\uc11d: &quot;\ucd5c\ub300&quot;\ub294 \uc694\uc778\uc5d0 \uc911\uc694\ud558\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4.<\/title>\n<meta name=\"description\" content=\"\uc774 \ud29c\ud1a0\ub9ac\uc5bc\uc5d0\uc11c\ub294 R\uc5d0\uc11c \ub2e4\uc74c \uc624\ub958\ub97c \ud574\uc11d\ud558\ub294 \ubc29\ubc95\uc744 \uc124\uba85\ud569\ub2c8\ub2e4. &#039;max&#039;\ub294 \uc694\uc778\uc5d0 \ub300\ud574 \uc758\ubbf8\uac00 \uc5c6\uc2b5\ub2c8\ub2e4.\" \/>\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\/ko\/r-max\u1102\u1173\u11ab-\u110b\u116d\u110b\u1175\u11ab\u110b\u1166-\u110c\u116e\u11bc\u110b\u116d\u1112\u1161\u110c\u1175-\u110b\u1161\/\" \/>\n<meta property=\"og:locale\" content=\"ko_KR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"R\uc758 \uc624\ub958 \ud574\uc11d: &quot;\ucd5c\ub300&quot;\ub294 \uc694\uc778\uc5d0 \uc911\uc694\ud558\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4.\" \/>\n<meta property=\"og:description\" content=\"\uc774 \ud29c\ud1a0\ub9ac\uc5bc\uc5d0\uc11c\ub294 R\uc5d0\uc11c \ub2e4\uc74c \uc624\ub958\ub97c \ud574\uc11d\ud558\ub294 \ubc29\ubc95\uc744 \uc124\uba85\ud569\ub2c8\ub2e4. &#039;max&#039;\ub294 \uc694\uc778\uc5d0 \ub300\ud574 \uc758\ubbf8\uac00 \uc5c6\uc2b5\ub2c8\ub2e4.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/statorials.org\/ko\/r-max\u1102\u1173\u11ab-\u110b\u116d\u110b\u1175\u11ab\u110b\u1166-\u110c\u116e\u11bc\u110b\u116d\u1112\u1161\u110c\u1175-\u110b\u1161\/\" \/>\n<meta property=\"og:site_name\" content=\"Statorials\" \/>\n<meta property=\"article:published_time\" content=\"2023-07-29T19:32:18+00:00\" \/>\n<meta name=\"author\" content=\"\ubca4\uc790\ubbfc \uc564\ub354\uc2a8\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"\ubca4\uc790\ubbfc \uc564\ub354\uc2a8\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"1\ubd84\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/statorials.org\/ko\/r-max%e1%84%82%e1%85%b3%e1%86%ab-%e1%84%8b%e1%85%ad%e1%84%8b%e1%85%b5%e1%86%ab%e1%84%8b%e1%85%a6-%e1%84%8c%e1%85%ae%e1%86%bc%e1%84%8b%e1%85%ad%e1%84%92%e1%85%a1%e1%84%8c%e1%85%b5-%e1%84%8b%e1%85%a1\/\",\"url\":\"https:\/\/statorials.org\/ko\/r-max%e1%84%82%e1%85%b3%e1%86%ab-%e1%84%8b%e1%85%ad%e1%84%8b%e1%85%b5%e1%86%ab%e1%84%8b%e1%85%a6-%e1%84%8c%e1%85%ae%e1%86%bc%e1%84%8b%e1%85%ad%e1%84%92%e1%85%a1%e1%84%8c%e1%85%b5-%e1%84%8b%e1%85%a1\/\",\"name\":\"R\uc758 \uc624\ub958 \ud574\uc11d: &quot;\ucd5c\ub300&quot;\ub294 \uc694\uc778\uc5d0 \uc911\uc694\ud558\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4.\",\"isPartOf\":{\"@id\":\"https:\/\/statorials.org\/ko\/#website\"},\"datePublished\":\"2023-07-29T19:32:18+00:00\",\"dateModified\":\"2023-07-29T19:32:18+00:00\",\"author\":{\"@id\":\"https:\/\/statorials.org\/ko\/#\/schema\/person\/600556789b7d79cbaa9d9f0c721b74f4\"},\"description\":\"\uc774 \ud29c\ud1a0\ub9ac\uc5bc\uc5d0\uc11c\ub294 R\uc5d0\uc11c \ub2e4\uc74c \uc624\ub958\ub97c \ud574\uc11d\ud558\ub294 \ubc29\ubc95\uc744 \uc124\uba85\ud569\ub2c8\ub2e4. &#39;max&#39;\ub294 \uc694\uc778\uc5d0 \ub300\ud574 \uc758\ubbf8\uac00 \uc5c6\uc2b5\ub2c8\ub2e4.\",\"breadcrumb\":{\"@id\":\"https:\/\/statorials.org\/ko\/r-max%e1%84%82%e1%85%b3%e1%86%ab-%e1%84%8b%e1%85%ad%e1%84%8b%e1%85%b5%e1%86%ab%e1%84%8b%e1%85%a6-%e1%84%8c%e1%85%ae%e1%86%bc%e1%84%8b%e1%85%ad%e1%84%92%e1%85%a1%e1%84%8c%e1%85%b5-%e1%84%8b%e1%85%a1\/#breadcrumb\"},\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/statorials.org\/ko\/r-max%e1%84%82%e1%85%b3%e1%86%ab-%e1%84%8b%e1%85%ad%e1%84%8b%e1%85%b5%e1%86%ab%e1%84%8b%e1%85%a6-%e1%84%8c%e1%85%ae%e1%86%bc%e1%84%8b%e1%85%ad%e1%84%92%e1%85%a1%e1%84%8c%e1%85%b5-%e1%84%8b%e1%85%a1\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/statorials.org\/ko\/r-max%e1%84%82%e1%85%b3%e1%86%ab-%e1%84%8b%e1%85%ad%e1%84%8b%e1%85%b5%e1%86%ab%e1%84%8b%e1%85%a6-%e1%84%8c%e1%85%ae%e1%86%bc%e1%84%8b%e1%85%ad%e1%84%92%e1%85%a1%e1%84%8c%e1%85%b5-%e1%84%8b%e1%85%a1\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\uc9d1\",\"item\":\"https:\/\/statorials.org\/ko\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"R\uc758 \uc624\ub958 \ud574\uc11d: &#39;max&#39;\ub294 \uc694\uc778\uc5d0 \uc911\uc694\ud558\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4.\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/statorials.org\/ko\/#website\",\"url\":\"https:\/\/statorials.org\/ko\/\",\"name\":\"Statorials\",\"description\":\"\ud1b5\uacc4 \ud65c\uc6a9 \ub2a5\ub825\uc744 \uc704\ud55c \uac00\uc774\ub4dc!\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/statorials.org\/ko\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"ko-KR\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/statorials.org\/ko\/#\/schema\/person\/600556789b7d79cbaa9d9f0c721b74f4\",\"name\":\"\ubca4\uc790\ubbfc \uc564\ub354\uc2a8\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"ko-KR\",\"@id\":\"https:\/\/statorials.org\/ko\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/statorials.org\/ko\/wp-content\/uploads\/2023\/10\/Dr.-Benjamin-Anderson-96x96.jpg\",\"contentUrl\":\"https:\/\/statorials.org\/ko\/wp-content\/uploads\/2023\/10\/Dr.-Benjamin-Anderson-96x96.jpg\",\"caption\":\"\ubca4\uc790\ubbfc \uc564\ub354\uc2a8\"},\"description\":\"\uc548\ub155\ud558\uc138\uc694. \uc800\ub294 \ud1b5\uacc4\ud559 \uad50\uc218\ub97c \ud1f4\uc9c1\ud558\uace0 \uc804\uc784 \ud1b5\uacc4 \uad50\uc0ac\ub85c \ubcc0\uc2e0\ud55c \ubca4\uc790\ubbfc\uc785\ub2c8\ub2e4. \ud1b5\uacc4 \ubd84\uc57c\uc758 \uad11\ubc94\uc704\ud55c \uacbd\ud5d8\uacfc \uc804\ubb38 \uc9c0\uc2dd\uc744 \ubc14\ud0d5\uc73c\ub85c Statorials\ub97c \ud1b5\ud574 \ud559\uc0dd\ub4e4\uc5d0\uac8c \ud798\uc744 \uc2e4\uc5b4\uc8fc\uae30 \uc704\ud574 \uc9c0\uc2dd\uc744 \uacf5\uc720\ud558\uace0 \uc2f6\uc2b5\ub2c8\ub2e4. \ub354 \uc54c\uc544\ubcf4\uae30\",\"sameAs\":[\"https:\/\/statorials.org\/ko\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"R\uc758 \uc624\ub958 \ud574\uc11d: &quot;\ucd5c\ub300&quot;\ub294 \uc694\uc778\uc5d0 \uc911\uc694\ud558\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4.","description":"\uc774 \ud29c\ud1a0\ub9ac\uc5bc\uc5d0\uc11c\ub294 R\uc5d0\uc11c \ub2e4\uc74c \uc624\ub958\ub97c \ud574\uc11d\ud558\ub294 \ubc29\ubc95\uc744 \uc124\uba85\ud569\ub2c8\ub2e4. &#39;max&#39;\ub294 \uc694\uc778\uc5d0 \ub300\ud574 \uc758\ubbf8\uac00 \uc5c6\uc2b5\ub2c8\ub2e4.","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\/ko\/r-max\u1102\u1173\u11ab-\u110b\u116d\u110b\u1175\u11ab\u110b\u1166-\u110c\u116e\u11bc\u110b\u116d\u1112\u1161\u110c\u1175-\u110b\u1161\/","og_locale":"ko_KR","og_type":"article","og_title":"R\uc758 \uc624\ub958 \ud574\uc11d: &quot;\ucd5c\ub300&quot;\ub294 \uc694\uc778\uc5d0 \uc911\uc694\ud558\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4.","og_description":"\uc774 \ud29c\ud1a0\ub9ac\uc5bc\uc5d0\uc11c\ub294 R\uc5d0\uc11c \ub2e4\uc74c \uc624\ub958\ub97c \ud574\uc11d\ud558\ub294 \ubc29\ubc95\uc744 \uc124\uba85\ud569\ub2c8\ub2e4. &#39;max&#39;\ub294 \uc694\uc778\uc5d0 \ub300\ud574 \uc758\ubbf8\uac00 \uc5c6\uc2b5\ub2c8\ub2e4.","og_url":"https:\/\/statorials.org\/ko\/r-max\u1102\u1173\u11ab-\u110b\u116d\u110b\u1175\u11ab\u110b\u1166-\u110c\u116e\u11bc\u110b\u116d\u1112\u1161\u110c\u1175-\u110b\u1161\/","og_site_name":"Statorials","article_published_time":"2023-07-29T19:32:18+00:00","author":"\ubca4\uc790\ubbfc \uc564\ub354\uc2a8","twitter_card":"summary_large_image","twitter_misc":{"Written by":"\ubca4\uc790\ubbfc \uc564\ub354\uc2a8","Est. reading time":"1\ubd84"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/statorials.org\/ko\/r-max%e1%84%82%e1%85%b3%e1%86%ab-%e1%84%8b%e1%85%ad%e1%84%8b%e1%85%b5%e1%86%ab%e1%84%8b%e1%85%a6-%e1%84%8c%e1%85%ae%e1%86%bc%e1%84%8b%e1%85%ad%e1%84%92%e1%85%a1%e1%84%8c%e1%85%b5-%e1%84%8b%e1%85%a1\/","url":"https:\/\/statorials.org\/ko\/r-max%e1%84%82%e1%85%b3%e1%86%ab-%e1%84%8b%e1%85%ad%e1%84%8b%e1%85%b5%e1%86%ab%e1%84%8b%e1%85%a6-%e1%84%8c%e1%85%ae%e1%86%bc%e1%84%8b%e1%85%ad%e1%84%92%e1%85%a1%e1%84%8c%e1%85%b5-%e1%84%8b%e1%85%a1\/","name":"R\uc758 \uc624\ub958 \ud574\uc11d: &quot;\ucd5c\ub300&quot;\ub294 \uc694\uc778\uc5d0 \uc911\uc694\ud558\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4.","isPartOf":{"@id":"https:\/\/statorials.org\/ko\/#website"},"datePublished":"2023-07-29T19:32:18+00:00","dateModified":"2023-07-29T19:32:18+00:00","author":{"@id":"https:\/\/statorials.org\/ko\/#\/schema\/person\/600556789b7d79cbaa9d9f0c721b74f4"},"description":"\uc774 \ud29c\ud1a0\ub9ac\uc5bc\uc5d0\uc11c\ub294 R\uc5d0\uc11c \ub2e4\uc74c \uc624\ub958\ub97c \ud574\uc11d\ud558\ub294 \ubc29\ubc95\uc744 \uc124\uba85\ud569\ub2c8\ub2e4. &#39;max&#39;\ub294 \uc694\uc778\uc5d0 \ub300\ud574 \uc758\ubbf8\uac00 \uc5c6\uc2b5\ub2c8\ub2e4.","breadcrumb":{"@id":"https:\/\/statorials.org\/ko\/r-max%e1%84%82%e1%85%b3%e1%86%ab-%e1%84%8b%e1%85%ad%e1%84%8b%e1%85%b5%e1%86%ab%e1%84%8b%e1%85%a6-%e1%84%8c%e1%85%ae%e1%86%bc%e1%84%8b%e1%85%ad%e1%84%92%e1%85%a1%e1%84%8c%e1%85%b5-%e1%84%8b%e1%85%a1\/#breadcrumb"},"inLanguage":"ko-KR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/statorials.org\/ko\/r-max%e1%84%82%e1%85%b3%e1%86%ab-%e1%84%8b%e1%85%ad%e1%84%8b%e1%85%b5%e1%86%ab%e1%84%8b%e1%85%a6-%e1%84%8c%e1%85%ae%e1%86%bc%e1%84%8b%e1%85%ad%e1%84%92%e1%85%a1%e1%84%8c%e1%85%b5-%e1%84%8b%e1%85%a1\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/statorials.org\/ko\/r-max%e1%84%82%e1%85%b3%e1%86%ab-%e1%84%8b%e1%85%ad%e1%84%8b%e1%85%b5%e1%86%ab%e1%84%8b%e1%85%a6-%e1%84%8c%e1%85%ae%e1%86%bc%e1%84%8b%e1%85%ad%e1%84%92%e1%85%a1%e1%84%8c%e1%85%b5-%e1%84%8b%e1%85%a1\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\uc9d1","item":"https:\/\/statorials.org\/ko\/"},{"@type":"ListItem","position":2,"name":"R\uc758 \uc624\ub958 \ud574\uc11d: &#39;max&#39;\ub294 \uc694\uc778\uc5d0 \uc911\uc694\ud558\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4."}]},{"@type":"WebSite","@id":"https:\/\/statorials.org\/ko\/#website","url":"https:\/\/statorials.org\/ko\/","name":"Statorials","description":"\ud1b5\uacc4 \ud65c\uc6a9 \ub2a5\ub825\uc744 \uc704\ud55c \uac00\uc774\ub4dc!","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/statorials.org\/ko\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"ko-KR"},{"@type":"Person","@id":"https:\/\/statorials.org\/ko\/#\/schema\/person\/600556789b7d79cbaa9d9f0c721b74f4","name":"\ubca4\uc790\ubbfc \uc564\ub354\uc2a8","image":{"@type":"ImageObject","inLanguage":"ko-KR","@id":"https:\/\/statorials.org\/ko\/#\/schema\/person\/image\/","url":"https:\/\/statorials.org\/ko\/wp-content\/uploads\/2023\/10\/Dr.-Benjamin-Anderson-96x96.jpg","contentUrl":"https:\/\/statorials.org\/ko\/wp-content\/uploads\/2023\/10\/Dr.-Benjamin-Anderson-96x96.jpg","caption":"\ubca4\uc790\ubbfc \uc564\ub354\uc2a8"},"description":"\uc548\ub155\ud558\uc138\uc694. \uc800\ub294 \ud1b5\uacc4\ud559 \uad50\uc218\ub97c \ud1f4\uc9c1\ud558\uace0 \uc804\uc784 \ud1b5\uacc4 \uad50\uc0ac\ub85c \ubcc0\uc2e0\ud55c \ubca4\uc790\ubbfc\uc785\ub2c8\ub2e4. \ud1b5\uacc4 \ubd84\uc57c\uc758 \uad11\ubc94\uc704\ud55c \uacbd\ud5d8\uacfc \uc804\ubb38 \uc9c0\uc2dd\uc744 \ubc14\ud0d5\uc73c\ub85c Statorials\ub97c \ud1b5\ud574 \ud559\uc0dd\ub4e4\uc5d0\uac8c \ud798\uc744 \uc2e4\uc5b4\uc8fc\uae30 \uc704\ud574 \uc9c0\uc2dd\uc744 \uacf5\uc720\ud558\uace0 \uc2f6\uc2b5\ub2c8\ub2e4. \ub354 \uc54c\uc544\ubcf4\uae30","sameAs":["https:\/\/statorials.org\/ko"]}]}},"yoast_meta":{"yoast_wpseo_title":"","yoast_wpseo_metadesc":"","yoast_wpseo_canonical":""},"_links":{"self":[{"href":"https:\/\/statorials.org\/ko\/wp-json\/wp\/v2\/posts\/468","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/statorials.org\/ko\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/statorials.org\/ko\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/statorials.org\/ko\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/statorials.org\/ko\/wp-json\/wp\/v2\/comments?post=468"}],"version-history":[{"count":0,"href":"https:\/\/statorials.org\/ko\/wp-json\/wp\/v2\/posts\/468\/revisions"}],"wp:attachment":[{"href":"https:\/\/statorials.org\/ko\/wp-json\/wp\/v2\/media?parent=468"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/statorials.org\/ko\/wp-json\/wp\/v2\/categories?post=468"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/statorials.org\/ko\/wp-json\/wp\/v2\/tags?post=468"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}