{"id":2957,"date":"2023-07-19T21:55:08","date_gmt":"2023-07-19T21:55:08","guid":{"rendered":"https:\/\/statorials.org\/ko\/r-%e1%84%92%e1%85%a1%e1%86%b7%e1%84%89%e1%85%ae-%e1%84%80%e1%85%a1%e1%84%8c%e1%85%a7%e1%84%8b%e1%85%a9%e1%84%80%e1%85%b5\/"},"modified":"2023-07-19T21:55:08","modified_gmt":"2023-07-19T21:55:08","slug":"r-%e1%84%92%e1%85%a1%e1%86%b7%e1%84%89%e1%85%ae-%e1%84%80%e1%85%a1%e1%84%8c%e1%85%a7%e1%84%8b%e1%85%a9%e1%84%80%e1%85%b5","status":"publish","type":"post","link":"https:\/\/statorials.org\/ko\/r-%e1%84%92%e1%85%a1%e1%86%b7%e1%84%89%e1%85%ae-%e1%84%80%e1%85%a1%e1%84%8c%e1%85%a7%e1%84%8b%e1%85%a9%e1%84%80%e1%85%b5\/","title":{"rendered":"R\uc5d0\uc11c get() \ud568\uc218\ub97c \uc0ac\uc6a9\ud558\uc5ec \uba85\uba85\ub41c \uac1d\uccb4\ub97c \uac80\uc0c9\ud558\ub294 \ubc29\ubc95"},"content":{"rendered":"<p><\/p>\n<hr>\n<p><span style=\"color: #000000;\"><span style=\"color: #000000;\">R\uc758 <strong>get()<\/strong> \ud568\uc218\ub97c \uc0ac\uc6a9\ud558\uc5ec \uba85\uba85\ub41c \uac1c\uccb4\ub97c \uac80\uc0c9\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4.<\/span><\/span><\/p>\n<p> <span style=\"color: #000000;\">\ub2e4\uc74c\uc740 R\uc5d0\uc11c \uac00\uc7a5 \uc77c\ubc18\uc801\uc778 \uc138 \uac00\uc9c0 <strong>get()<\/strong> \ud568\uc218\uc785\ub2c8\ub2e4.<\/span><\/p>\n<p> <span style=\"color: #000000;\"><strong>1.<\/strong> <strong>get()<\/strong> \u2013 \uac1d\uccb4 \uac00\uc838\uc624\uae30<\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <span style=\"color: #000000;\"><strong>get(\" <span style=\"color: #ff0000;\">my_object<\/span> \")<\/strong><\/span><\/pre>\n<p> <span style=\"color: #000000;\"><strong>2.<\/strong> <strong>get0()<\/strong> \u2013 \uac1d\uccb4\ub97c \ucc3e\uc744 \uc218 \uc5c6\ub294 \uacbd\uc6b0 \uc0ac\uc6a9\uc790 \uc815\uc758 \uc624\ub958 \uba54\uc2dc\uc9c0\ub97c \uc0ac\uc6a9\ud558\uc5ec \uac1d\uccb4\ub97c \uac80\uc0c9\ud569\ub2c8\ub2e4.<\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <span style=\"color: #000000;\"><strong>get0(\" <span style=\"color: #ff0000;\">my_object<\/span> \", ifnotfound=\" <span style=\"color: #ff0000;\">does not exist<\/span> \")<\/strong><\/span><\/pre>\n<p> <span style=\"color: #000000;\"><strong>3.<\/strong> <strong>mget()<\/strong> \u2013 \uc5ec\ub7ec \uac1d\uccb4 \uac80\uc0c9<\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <span style=\"color: #000000;\"><strong>mget(c(\" <span style=\"color: #ff0000;\">my_object1<\/span> \", \" <span style=\"color: #ff0000;\">my_object2<\/span> \", \" <span style=\"color: #ff0000;\">my_object3<\/span> \"))<\/strong><\/span><\/pre>\n<p> <span style=\"color: #000000;\">\ub2e4\uc74c \uc608\uc5d0\uc11c\ub294 \uac01 \uae30\ub2a5\uc744 \uc2e4\uc81c\ub85c \uc0ac\uc6a9\ud558\ub294 \ubc29\ubc95\uc744 \ubcf4\uc5ec\uc90d\ub2c8\ub2e4.<\/span><\/p>\n<h3> <strong><span style=\"color: #000000;\">\uc608 1: get()\uc744 \uc0ac\uc6a9\ud558\uc5ec \uac1d\uccb4 \uac80\uc0c9<\/span><\/strong><\/h3>\n<p> <span style=\"color: #000000;\">\ub2e4\uc74c \ucf54\ub4dc\ub294 <strong>get()<\/strong> \ud568\uc218\ub97c \uc0ac\uc6a9\ud558\uc5ec \uc774\ub984 \uac1d\uccb4\ub97c \uac80\uc0c9\ud558\ub294 \ubc29\ubc95\uc744 \ubcf4\uc5ec\uc90d\ub2c8\ub2e4.<\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <span style=\"color: #000000;\"><strong><span style=\"color: #008080;\">#define vector of values\n<\/span>data1 &lt;- c(4, 5, 5, 6, 13, 18, 19, 15, 12)\n\n<span style=\"color: #008080;\">#get vector of values\n<\/span>get(\" <span style=\"color: #ff0000;\">data1<\/span> \")\n\n[1] 4 5 5 6 13 18 19 15 12\n<\/strong><\/span><\/pre>\n<p> <span style=\"color: #000000;\">\uba85\uba85\ub41c \uac1d\uccb4\uac00 \uc874\uc7ac\ud558\uc9c0 \uc54a\uc73c\uba74 \uc774 \ud568\uc218\ub294 \uc624\ub958\ub97c \ubc18\ud658\ud569\ub2c8\ub2e4.<\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <span style=\"color: #000000;\"><strong><span style=\"color: #008080;\">#define vector of values\n<\/span>data1 &lt;- c(4, 5, 5, 6, 13, 18, 19, 15, 12)\n\n<span style=\"color: #008080;\">#attempt to get vector of values\n<\/span>get(\" <span style=\"color: #ff0000;\">data0<\/span> \")\n\nError in get(\"data0\"): object 'data0' not found\n<\/strong><\/span><\/pre>\n<h3> <strong><span style=\"color: #000000;\">\uc608\uc81c 2: \uc0ac\uc6a9\uc790 \uc815\uc758 \uc624\ub958 \uba54\uc2dc\uc9c0\ub97c \uc0ac\uc6a9\ud558\uc5ec get0()\uc744 \uc0ac\uc6a9\ud558\uc5ec \uac1d\uccb4\ub97c \uac80\uc0c9\ud569\ub2c8\ub2e4.<\/span><\/strong><\/h3>\n<p> <span style=\"color: #000000;\">\ub610\ud55c <strong>get0()<\/strong> \ud568\uc218\ub97c \uc0ac\uc6a9\ud558\uc5ec R\uc5d0\uc11c \uba85\uba85\ub41c \uac1c\uccb4\ub97c \uac80\uc0c9\ud558\uace0 \ud574\ub2f9 \uac1c\uccb4\ub97c \ucc3e\uc744 \uc218 \uc5c6\ub294 \uacbd\uc6b0 \uc0ac\uc6a9\uc790 \uc9c0\uc815 \uc624\ub958 \uba54\uc2dc\uc9c0\ub97c \uc0ac\uc6a9\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4.<\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <span style=\"color: #000000;\"><strong><span style=\"color: #008080;\">#define vector of values\n<\/span>data1 &lt;- c(4, 5, 5, 6, 13, 18, 19, 15, 12)\n\n<span style=\"color: #008080;\">#attempt to get vector of values\n<\/span>get0(\" <span style=\"color: #ff0000;\">data0<\/span> \", ifnotfound=\" <span style=\"color: #ff0000;\">does not exist<\/span> \")\n\n[1] \u201cdoes not exist\u201d\n<\/strong><\/span><\/pre>\n<p> <span style=\"color: #000000;\">&#8220;data0&#8243;\uc774\ub77c\ub294 \uac1c\uccb4\uac00 \uc874\uc7ac\ud558\uc9c0 \uc54a\uae30 \ub54c\ubb38\uc5d0 <strong>get0()<\/strong> \ud568\uc218\ub294 \uc6b0\ub9ac\uac00 \ub9cc\ub4e0 \uc0ac\uc6a9\uc790 \uc815\uc758 \uc624\ub958 \uba54\uc2dc\uc9c0\ub97c \ubc18\ud658\ud569\ub2c8\ub2e4.<\/span><\/p>\n<h3> <strong><span style=\"color: #000000;\">\uc608\uc81c 3: mget()\uc744 \uc0ac\uc6a9\ud558\uc5ec \uc5ec\ub7ec \uac1d\uccb4 \uac80\uc0c9<\/span><\/strong><\/h3>\n<p> <span style=\"color: #000000;\"><strong>mget()<\/strong> \ud568\uc218\ub97c \uc0ac\uc6a9\ud558\uc5ec R\uc5d0\uc11c \uba85\uba85\ub41c \uc5ec\ub7ec \uac1c\uccb4\ub97c \uac80\uc0c9\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4.<\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <span style=\"color: #000000;\"><strong><span style=\"color: #008080;\">#define three vectors\n<span style=\"color: #000000;\">data1 &lt;- c(4, 5, 5, 6, 13, 18, 19, 15, 12)\ndata2 &lt;- c(\"A\", \"B\", \"C\", \"D\")\ndata3 &lt;- c(10, 20, 25, 30, 35)\n\n<span style=\"color: #008080;\">#get all three vectors\n<\/span>mget(c(\" <span style=\"color: #ff0000;\">data1<\/span> \", \" <span style=\"color: #ff0000;\">data2<\/span> \", \" <span style=\"color: #ff0000;\">data3<\/span> \"))\n\n$data1\n[1] 4 5 5 6 13 18 19 15 12\n\n$data2\n[1] \u201cA\u201d \u201cB\u201d \u201cC\u201d \u201cD\u201d\n\n$data3\n[1] 10 20 25 30 35\n<\/span><\/span><\/strong><\/span><\/pre>\n<p> <span style=\"color: #000000;\">\ub2e8\uc21c\ud788 <strong>get()<\/strong> \ud568\uc218\ub97c \uc0ac\uc6a9\ud558\ub824\uace0 \ud558\uba74 \uccab \ubc88\uc9f8 \uba85\uba85\ub41c \uac1d\uccb4\ub9cc \ubc18\ud658\ub429\ub2c8\ub2e4.<\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <span style=\"color: #000000;\"><strong><span style=\"color: #008080;\">#define three vectors\n<span style=\"color: #000000;\">data1 &lt;- c(4, 5, 5, 6, 13, 18, 19, 15, 12)\ndata2 &lt;- c(\"A\", \"B\", \"C\", \"D\")\ndata3 &lt;- c(10, 20, 25, 30, 35)<\/span>\n\n#attempt to get all three vectors\n<span style=\"color: #000000;\">mget(c(\" <span style=\"color: #ff0000;\">data1<\/span> \", \" <span style=\"color: #ff0000;\">data2<\/span> \", \" <span style=\"color: #ff0000;\">data3<\/span> \"))\n\n[1] 4 5 5 6 13 18 19 15 12\n<\/span><\/span><\/strong><\/span><\/pre>\n<h3> <span style=\"color: #000000;\"><strong>\ucd94\uac00 \ub9ac\uc18c\uc2a4<\/strong><\/span><\/h3>\n<p> <span style=\"color: #000000;\">\ub2e4\uc74c \ud29c\ud1a0\ub9ac\uc5bc\uc5d0\uc11c\ub294 R\uc5d0\uc11c \ub2e4\ub978 \uc77c\ubc18\uc801\uc778 \uae30\ub2a5\uc744 \uc0ac\uc6a9\ud558\ub294 \ubc29\ubc95\uc744 \uc124\uba85\ud569\ub2c8\ub2e4.<\/span><\/p>\n<p> <a href=\"https:\/\/statorials.org\/ko\/r\u110b\u1174-c-\u1112\u1161\u11b7\u1109\u116e\/\" target=\"_blank\" rel=\"noopener\">R\uc5d0\uc11c c() \ud568\uc218\ub97c \uc0ac\uc6a9\ud558\ub294 \ubc29\ubc95<\/a><br \/> <a href=\"https:\/\/statorials.org\/ko\/\u1109\u1173\u1111\u1173\u1105\u1175\u11ab\u1110\u1173-\u1100\u1175\u1102\u1173\u11bc\/\" target=\"_blank\" rel=\"noopener\">R\uc5d0\uc11c sprintf() \ud568\uc218\ub97c \uc0ac\uc6a9\ud558\ub294 \ubc29\ubc95<\/a><br \/> <a href=\"https:\/\/statorials.org\/ko\/r\u110b\u1174-\u1112\u1161\u11b7\u1109\u116e-\u1100\u116d\u110e\u1166\/\" target=\"_blank\" rel=\"noopener\">R\uc5d0\uc11c replacement() \ud568\uc218\ub97c \uc0ac\uc6a9\ud558\ub294 \ubc29\ubc95<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>R\uc758 get() \ud568\uc218\ub97c \uc0ac\uc6a9\ud558\uc5ec \uba85\uba85\ub41c \uac1c\uccb4\ub97c \uac80\uc0c9\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4. \ub2e4\uc74c\uc740 R\uc5d0\uc11c \uac00\uc7a5 \uc77c\ubc18\uc801\uc778 \uc138 \uac00\uc9c0 get() \ud568\uc218\uc785\ub2c8\ub2e4. 1. get() \u2013 \uac1d\uccb4 \uac00\uc838\uc624\uae30 get(&#8221; my_object &#8220;) 2. get0() \u2013 \uac1d\uccb4\ub97c \ucc3e\uc744 \uc218 \uc5c6\ub294 \uacbd\uc6b0 \uc0ac\uc6a9\uc790 \uc815\uc758 \uc624\ub958 \uba54\uc2dc\uc9c0\ub97c \uc0ac\uc6a9\ud558\uc5ec \uac1d\uccb4\ub97c \uac80\uc0c9\ud569\ub2c8\ub2e4. get0(&#8221; my_object &#8220;, ifnotfound=&#8221; does not exist &#8220;) 3. mget() \u2013 \uc5ec\ub7ec \uac1d\uccb4 \uac80\uc0c9 mget(c(&#8221; [&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-2957","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\uc5d0\uc11c get() \ud568\uc218\ub97c \uc0ac\uc6a9\ud558\uc5ec \uba85\uba85\ub41c \uac1d\uccb4\ub97c \uac80\uc0c9\ud558\ub294 \ubc29\ubc95 \u2013 Statorials<\/title>\n<meta name=\"description\" content=\"\uc774 \ud29c\ud1a0\ub9ac\uc5bc\uc5d0\uc11c\ub294 R\uc5d0\uc11c get() \ud568\uc218\ub97c \uc0ac\uc6a9\ud558\uc5ec \uba85\uba85\ub41c \uac1d\uccb4\ub97c \uac80\uc0c9\ud558\ub294 \ubc29\ubc95\uc744 \uba87 \uac00\uc9c0 \uc608\uc640 \ud568\uaed8 \uc124\uba85\ud569\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-\u1112\u1161\u11b7\u1109\u116e-\u1100\u1161\u110c\u1167\u110b\u1169\u1100\u1175\/\" \/>\n<meta property=\"og:locale\" content=\"ko_KR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"R\uc5d0\uc11c get() \ud568\uc218\ub97c \uc0ac\uc6a9\ud558\uc5ec \uba85\uba85\ub41c \uac1d\uccb4\ub97c \uac80\uc0c9\ud558\ub294 \ubc29\ubc95 \u2013 Statorials\" \/>\n<meta property=\"og:description\" content=\"\uc774 \ud29c\ud1a0\ub9ac\uc5bc\uc5d0\uc11c\ub294 R\uc5d0\uc11c get() \ud568\uc218\ub97c \uc0ac\uc6a9\ud558\uc5ec \uba85\uba85\ub41c \uac1d\uccb4\ub97c \uac80\uc0c9\ud558\ub294 \ubc29\ubc95\uc744 \uba87 \uac00\uc9c0 \uc608\uc640 \ud568\uaed8 \uc124\uba85\ud569\ub2c8\ub2e4.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/statorials.org\/ko\/r-\u1112\u1161\u11b7\u1109\u116e-\u1100\u1161\u110c\u1167\u110b\u1169\u1100\u1175\/\" \/>\n<meta property=\"og:site_name\" content=\"Statorials\" \/>\n<meta property=\"article:published_time\" content=\"2023-07-19T21:55:08+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-%e1%84%92%e1%85%a1%e1%86%b7%e1%84%89%e1%85%ae-%e1%84%80%e1%85%a1%e1%84%8c%e1%85%a7%e1%84%8b%e1%85%a9%e1%84%80%e1%85%b5\/\",\"url\":\"https:\/\/statorials.org\/ko\/r-%e1%84%92%e1%85%a1%e1%86%b7%e1%84%89%e1%85%ae-%e1%84%80%e1%85%a1%e1%84%8c%e1%85%a7%e1%84%8b%e1%85%a9%e1%84%80%e1%85%b5\/\",\"name\":\"R\uc5d0\uc11c get() \ud568\uc218\ub97c \uc0ac\uc6a9\ud558\uc5ec \uba85\uba85\ub41c \uac1d\uccb4\ub97c \uac80\uc0c9\ud558\ub294 \ubc29\ubc95 \u2013 Statorials\",\"isPartOf\":{\"@id\":\"https:\/\/statorials.org\/ko\/#website\"},\"datePublished\":\"2023-07-19T21:55:08+00:00\",\"dateModified\":\"2023-07-19T21:55:08+00:00\",\"author\":{\"@id\":\"https:\/\/statorials.org\/ko\/#\/schema\/person\/600556789b7d79cbaa9d9f0c721b74f4\"},\"description\":\"\uc774 \ud29c\ud1a0\ub9ac\uc5bc\uc5d0\uc11c\ub294 R\uc5d0\uc11c get() \ud568\uc218\ub97c \uc0ac\uc6a9\ud558\uc5ec \uba85\uba85\ub41c \uac1d\uccb4\ub97c \uac80\uc0c9\ud558\ub294 \ubc29\ubc95\uc744 \uba87 \uac00\uc9c0 \uc608\uc640 \ud568\uaed8 \uc124\uba85\ud569\ub2c8\ub2e4.\",\"breadcrumb\":{\"@id\":\"https:\/\/statorials.org\/ko\/r-%e1%84%92%e1%85%a1%e1%86%b7%e1%84%89%e1%85%ae-%e1%84%80%e1%85%a1%e1%84%8c%e1%85%a7%e1%84%8b%e1%85%a9%e1%84%80%e1%85%b5\/#breadcrumb\"},\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/statorials.org\/ko\/r-%e1%84%92%e1%85%a1%e1%86%b7%e1%84%89%e1%85%ae-%e1%84%80%e1%85%a1%e1%84%8c%e1%85%a7%e1%84%8b%e1%85%a9%e1%84%80%e1%85%b5\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/statorials.org\/ko\/r-%e1%84%92%e1%85%a1%e1%86%b7%e1%84%89%e1%85%ae-%e1%84%80%e1%85%a1%e1%84%8c%e1%85%a7%e1%84%8b%e1%85%a9%e1%84%80%e1%85%b5\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\uc9d1\",\"item\":\"https:\/\/statorials.org\/ko\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"R\uc5d0\uc11c get() \ud568\uc218\ub97c \uc0ac\uc6a9\ud558\uc5ec \uba85\uba85\ub41c \uac1d\uccb4\ub97c \uac80\uc0c9\ud558\ub294 \ubc29\ubc95\"}]},{\"@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\uc5d0\uc11c get() \ud568\uc218\ub97c \uc0ac\uc6a9\ud558\uc5ec \uba85\uba85\ub41c \uac1d\uccb4\ub97c \uac80\uc0c9\ud558\ub294 \ubc29\ubc95 \u2013 Statorials","description":"\uc774 \ud29c\ud1a0\ub9ac\uc5bc\uc5d0\uc11c\ub294 R\uc5d0\uc11c get() \ud568\uc218\ub97c \uc0ac\uc6a9\ud558\uc5ec \uba85\uba85\ub41c \uac1d\uccb4\ub97c \uac80\uc0c9\ud558\ub294 \ubc29\ubc95\uc744 \uba87 \uac00\uc9c0 \uc608\uc640 \ud568\uaed8 \uc124\uba85\ud569\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-\u1112\u1161\u11b7\u1109\u116e-\u1100\u1161\u110c\u1167\u110b\u1169\u1100\u1175\/","og_locale":"ko_KR","og_type":"article","og_title":"R\uc5d0\uc11c get() \ud568\uc218\ub97c \uc0ac\uc6a9\ud558\uc5ec \uba85\uba85\ub41c \uac1d\uccb4\ub97c \uac80\uc0c9\ud558\ub294 \ubc29\ubc95 \u2013 Statorials","og_description":"\uc774 \ud29c\ud1a0\ub9ac\uc5bc\uc5d0\uc11c\ub294 R\uc5d0\uc11c get() \ud568\uc218\ub97c \uc0ac\uc6a9\ud558\uc5ec \uba85\uba85\ub41c \uac1d\uccb4\ub97c \uac80\uc0c9\ud558\ub294 \ubc29\ubc95\uc744 \uba87 \uac00\uc9c0 \uc608\uc640 \ud568\uaed8 \uc124\uba85\ud569\ub2c8\ub2e4.","og_url":"https:\/\/statorials.org\/ko\/r-\u1112\u1161\u11b7\u1109\u116e-\u1100\u1161\u110c\u1167\u110b\u1169\u1100\u1175\/","og_site_name":"Statorials","article_published_time":"2023-07-19T21:55:08+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-%e1%84%92%e1%85%a1%e1%86%b7%e1%84%89%e1%85%ae-%e1%84%80%e1%85%a1%e1%84%8c%e1%85%a7%e1%84%8b%e1%85%a9%e1%84%80%e1%85%b5\/","url":"https:\/\/statorials.org\/ko\/r-%e1%84%92%e1%85%a1%e1%86%b7%e1%84%89%e1%85%ae-%e1%84%80%e1%85%a1%e1%84%8c%e1%85%a7%e1%84%8b%e1%85%a9%e1%84%80%e1%85%b5\/","name":"R\uc5d0\uc11c get() \ud568\uc218\ub97c \uc0ac\uc6a9\ud558\uc5ec \uba85\uba85\ub41c \uac1d\uccb4\ub97c \uac80\uc0c9\ud558\ub294 \ubc29\ubc95 \u2013 Statorials","isPartOf":{"@id":"https:\/\/statorials.org\/ko\/#website"},"datePublished":"2023-07-19T21:55:08+00:00","dateModified":"2023-07-19T21:55:08+00:00","author":{"@id":"https:\/\/statorials.org\/ko\/#\/schema\/person\/600556789b7d79cbaa9d9f0c721b74f4"},"description":"\uc774 \ud29c\ud1a0\ub9ac\uc5bc\uc5d0\uc11c\ub294 R\uc5d0\uc11c get() \ud568\uc218\ub97c \uc0ac\uc6a9\ud558\uc5ec \uba85\uba85\ub41c \uac1d\uccb4\ub97c \uac80\uc0c9\ud558\ub294 \ubc29\ubc95\uc744 \uba87 \uac00\uc9c0 \uc608\uc640 \ud568\uaed8 \uc124\uba85\ud569\ub2c8\ub2e4.","breadcrumb":{"@id":"https:\/\/statorials.org\/ko\/r-%e1%84%92%e1%85%a1%e1%86%b7%e1%84%89%e1%85%ae-%e1%84%80%e1%85%a1%e1%84%8c%e1%85%a7%e1%84%8b%e1%85%a9%e1%84%80%e1%85%b5\/#breadcrumb"},"inLanguage":"ko-KR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/statorials.org\/ko\/r-%e1%84%92%e1%85%a1%e1%86%b7%e1%84%89%e1%85%ae-%e1%84%80%e1%85%a1%e1%84%8c%e1%85%a7%e1%84%8b%e1%85%a9%e1%84%80%e1%85%b5\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/statorials.org\/ko\/r-%e1%84%92%e1%85%a1%e1%86%b7%e1%84%89%e1%85%ae-%e1%84%80%e1%85%a1%e1%84%8c%e1%85%a7%e1%84%8b%e1%85%a9%e1%84%80%e1%85%b5\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\uc9d1","item":"https:\/\/statorials.org\/ko\/"},{"@type":"ListItem","position":2,"name":"R\uc5d0\uc11c get() \ud568\uc218\ub97c \uc0ac\uc6a9\ud558\uc5ec \uba85\uba85\ub41c \uac1d\uccb4\ub97c \uac80\uc0c9\ud558\ub294 \ubc29\ubc95"}]},{"@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\/2957","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=2957"}],"version-history":[{"count":0,"href":"https:\/\/statorials.org\/ko\/wp-json\/wp\/v2\/posts\/2957\/revisions"}],"wp:attachment":[{"href":"https:\/\/statorials.org\/ko\/wp-json\/wp\/v2\/media?parent=2957"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/statorials.org\/ko\/wp-json\/wp\/v2\/categories?post=2957"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/statorials.org\/ko\/wp-json\/wp\/v2\/tags?post=2957"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}