{"id":4177,"date":"2023-07-13T01:50:52","date_gmt":"2023-07-13T01:50:52","guid":{"rendered":"https:\/\/statorials.org\/ko\/r%e1%84%8b%e1%85%b4-%e1%84%8f%e1%85%a5%e1%86%ba-%e1%84%80%e1%85%b5%e1%84%82%e1%85%b3%e1%86%bc\/"},"modified":"2023-07-13T01:50:52","modified_gmt":"2023-07-13T01:50:52","slug":"r%e1%84%8b%e1%85%b4-%e1%84%8f%e1%85%a5%e1%86%ba-%e1%84%80%e1%85%b5%e1%84%82%e1%85%b3%e1%86%bc","status":"publish","type":"post","link":"https:\/\/statorials.org\/ko\/r%e1%84%8b%e1%85%b4-%e1%84%8f%e1%85%a5%e1%86%ba-%e1%84%80%e1%85%b5%e1%84%82%e1%85%b3%e1%86%bc\/","title":{"rendered":"R\uc5d0\uc11c cut() \ud568\uc218\ub97c \uc0ac\uc6a9\ud558\ub294 \ubc29\ubc95"},"content":{"rendered":"<p><\/p>\n<hr>\n<p><span style=\"color: #000000;\">R\uc758 <strong>cut()<\/strong> \ud568\uc218\ub294 \uac12 \ubc94\uc704\ub97c \ube48\uc73c\ub85c \uc790\ub974\uace0 \uac01 \ube48\uc5d0 \ub300\ud55c \ub808\uc774\ube14\uc744 \uc9c0\uc815\ud558\ub294 \ub370 \uc0ac\uc6a9\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4.<\/span><\/p>\n<p> <span style=\"color: #000000;\">\uc774 \ud568\uc218\ub294 \ub2e4\uc74c \uad6c\ubb38\uc744 \uc0ac\uc6a9\ud569\ub2c8\ub2e4.<\/span><\/p>\n<p> <span style=\"color: #000000;\"><strong>\ucef7(x, \ub098\ub204\uae30, \ub808\uc774\ube14 = NULL, \u2026)<\/strong><\/span><\/p>\n<p> <span style=\"color: #000000;\">\uae08:<\/span><\/p>\n<ul>\n<li> <span style=\"color: #000000;\"><strong>x<\/strong> : \ubca1\ud130 \uc774\ub984<\/span><\/li>\n<li> <span style=\"color: #000000;\"><strong>break<\/strong> : \uc911\ub2e8\uc810 \uc218 \ub610\ub294 \uc911\ub2e8\uc810 \ubca1\ud130<\/span><\/li>\n<li> <span style=\"color: #000000;\"><strong>labels<\/strong> : \uacb0\uacfc \uc800\uc7a5\uc18c\uc5d0 \ub300\ud55c \ub808\uc774\ube14<\/span><\/li>\n<\/ul>\n<p> <span style=\"color: #000000;\">\ub2e4\uc74c \uc608\uc5d0\uc11c\ub294 R\uc758 \ub2e4\uc74c \ub370\uc774\ud130 \ud504\ub808\uc784\uc744 \uc0ac\uc6a9\ud558\uc5ec \ub2e4\uc591\ud55c \uc2dc\ub098\ub9ac\uc624\uc5d0\uc11c \uc774 \ud568\uc218\ub97c \uc0ac\uc6a9\ud558\ub294 \ubc29\ubc95\uc744 \ubcf4\uc5ec\uc90d\ub2c8\ub2e4.<\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <strong><span style=\"color: #008080;\"><span style=\"color: #000000;\"><span style=\"color: #008080;\">#create data frame\n<\/span>df &lt;- data. <span style=\"color: #3366ff;\">frame<\/span> (player=c('A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I'),\n                 points=c(4, 7, 8, 12, 14, 16, 20, 26, 36))\n\n<span style=\"color: #008080;\">#view data frame\n<\/span>df\n\n  player points\n1 to 4\n2 B 7\n3 C 8\n4 D 12\n5 E 14\n6 F 16\n7 G 20\n8:26 a.m.\n9 I 36<\/span><\/span><\/strong><\/pre>\n<h2> <span style=\"color: #000000;\"><strong>\uc608\uc2dc 1: \ub098\ub204\uae30 \ud69f\uc218\uc5d0 \ub530\ub77c \ubca1\ud130 \uc790\ub974\uae30<\/strong><\/span><\/h2>\n<p> <span style=\"color: #000000;\">\ub2e4\uc74c \ucf54\ub4dc\ub294 <strong>cut()<\/strong> \ud568\uc218\ub97c \uc0ac\uc6a9\ud558\uc5ec <strong>\uc810 \uc5f4\uc744<\/strong> 4\uac1c\uc758 \ub3d9\uc77c\ud55c \ud06c\uae30 \uadf8\ub8f9\uc73c\ub85c \uc790\ub974\ub294 <strong>Category<\/strong> \ub77c\ub294 \uc0c8 \uc5f4\uc744 \ub9cc\ub4dc\ub294 \ubc29\ubc95\uc744 \ubcf4\uc5ec\uc90d\ub2c8\ub2e4.<\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <strong><span style=\"color: #008080;\"><span style=\"color: #000000;\"><span style=\"color: #008080;\">#create new column that places each player into four categories based on points\n<\/span>df$category &lt;- cut(df$points, breaks= <span style=\"color: #008000;\">4<\/span> )\n\n<span style=\"color: #008080;\">#view updated data frame\n<\/span>df\n\n  player points category\n1 to 4 (3.97.12]\n2 B 7 (3.97.12]\n3 C 8 (3.97.12]\n4 D 12 (3.97.12]\n5 E 14 (12.20]\n6 F 16 (12.20]\n7 G 20 (12.20]\n8:26 a.m. (20.28]\n9 I 36 (28.36]<\/span><\/span><\/strong><\/pre>\n<p> <span style=\"color: #000000;\"><strong>break=4 \ub97c<\/strong> \uc9c0\uc815\ud588\uc73c\ubbc0\ub85c <strong>cut()<\/strong> \ud568\uc218\ub294 \ud3ec\uc778\ud2b8 \uc5f4\uc758 \uac12\uc744 \ub3d9\uc77c\ud55c \ud06c\uae30\uc758 4\uac1c \uadf8\ub8f9\uc73c\ub85c \ub098\ub215\ub2c8\ub2e4.<\/span><\/p>\n<p> <span style=\"color: #000000;\"><strong>cut()<\/strong> \ud568\uc218\uac00 \uc774\ub97c \uc218\ud589\ud55c \ubc29\ubc95\uc740 \ub2e4\uc74c\uacfc \uac19\uc2b5\ub2c8\ub2e4.<\/span><\/p>\n<ul>\n<li> <span style=\"color: #000000;\">\uba3c\uc800 \ud3ec\uc778\ud2b8 \uc5f4(36 \u2013 4 = 32)\uc5d0\uc11c \uac00\uc7a5 \ud070 \uac12\uacfc \uac00\uc7a5 \uc791\uc740 \uac12\uc758 \ucc28\uc774\ub97c \ucc3e\uc558\uc2b5\ub2c8\ub2e4.<\/span><\/li>\n<li> <span style=\"color: #000000;\">\uadf8\ub7f0 \ub2e4\uc74c \uadf8\ub294 \uc774 \ucc28\uc774\ub97c 4\ub85c \ub098\ub215\ub2c8\ub2e4(32 \/ 4 = 8).<\/span><\/li>\n<li> <span style=\"color: #000000;\">\uacb0\uacfc\ub294 \uac01\uac01 \ub108\ube44\uac00 8\uc778 4\uac1c\uc758 Bin\uc785\ub2c8\ub2e4.<\/span><\/li>\n<\/ul>\n<p> <span style=\"color: #000000;\"><strong>\ucc38\uace0<\/strong> : <strong>cut()<\/strong> <a href=\"https:\/\/www.rdocumentation.org\/packages\/base\/versions\/3.6.2\/topics\/cut\" target=\"_blank\" rel=\"noopener\">\ubb38\uc11c<\/a> \uc758 \ub2e4\uc74c \uae30\ub2a5\uc73c\ub85c \uc778\ud574 \uac00\uc7a5 \ub0ae\uc740 \uac04\uaca9\uc740 4\uac00 \uc544\ub2cc 3.97\uc785\ub2c8\ub2e4.<\/span><\/p>\n<blockquote>\n<p> <span style=\"color: #000000;\"><em>\uc77c\uc2dc \uc911\uc9c0\uac00 \ub2e8\uc77c \uc22b\uc790\ub85c \uc9c0\uc815\ub418\uba74 \ub370\uc774\ud130 \ubc94\uc704\uac00 \ub3d9\uc77c\ud55c \uae38\uc774\uc758 \uc77c\uc2dc \uc911\uc9c0 \uccad\ud06c\ub85c \ub098\ub204\uc5b4\uc9c4 \ub2e4\uc74c \uc678\ubd80 \ud55c\uacc4\uac00 \ubc94\uc704\uc5d0\uc11c 0.1% \ub5a8\uc5b4\uc838 \uc774\ub3d9\ud558\uc5ec \uc774\uc0c1\uac12\uc774 \uc77c\uc2dc \uc911\uc9c0 \uac04\uaca9\uc758 \ub450 \uac00\uc9c0 \ubaa8\ub450\uc5d0 \ud3ec\ud568\ub418\ub3c4\ub85d \ud569\ub2c8\ub2e4.<\/em><\/span><\/p>\n<\/blockquote>\n<h2> <span style=\"color: #000000;\"><strong>\uc608 2: \ud2b9\uc815 \uc911\ub2e8\uc810\uc744 \uae30\ubc18\uc73c\ub85c \ubca1\ud130 \uc808\ub2e8<\/strong><\/span><\/h2>\n<p> <span style=\"color: #000000;\">\ub2e4\uc74c \ucf54\ub4dc\ub294 <strong>cut()<\/strong> \ud568\uc218\ub97c \uc0ac\uc6a9\ud558\uc5ec \ud2b9\uc815 \uc911\ub2e8\uc810\uc758 \ubca1\ud130\ub97c \uae30\ubc18\uc73c\ub85c <strong>\uc810<\/strong> \uc5f4\uc744 \uc790\ub974\ub294 <strong>Category<\/strong> \ub77c\ub294 \uc0c8 \uc5f4\uc744 \ub9cc\ub4dc\ub294 \ubc29\ubc95\uc744 \ubcf4\uc5ec\uc90d\ub2c8\ub2e4.<\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <strong><span style=\"color: #008080;\"><span style=\"color: #000000;\"><span style=\"color: #008080;\">#create new column based on specific break points\n<\/span>df$category &lt;- cut(df$points, breaks=c(0, 10, 15, 20, 40))\n\n<span style=\"color: #008080;\">#view updated data frame\n<\/span>df\n\n  player points category\n1 to 4 (0.10]\n2 B 7 (0.10]\n3 C 8 (0.10]\n4 D 12 (10.15]\n5 E 14 (10.15]\n6 F 16 (15.20]\n7 G 20 (15.20]\n8:26 a.m. (20.40)\n9 I 36 (20.40]<\/span><\/span><\/strong><\/pre>\n<p> <span style=\"color: #000000;\"><strong>cut()<\/strong> \ud568\uc218\ub294 \uc6b0\ub9ac\uac00 \uc81c\uacf5\ud55c \ud2b9\uc815 \uc911\ub2e8\uc810 \ubca1\ud130\ub97c \uae30\ubc18\uc73c\ub85c \uac01 \ud50c\ub808\uc774\uc5b4\ub97c \uce74\ud14c\uace0\ub9ac\ub85c \ubd84\ub958\ud588\uc2b5\ub2c8\ub2e4.<\/span><\/p>\n<h2> <span style=\"color: #000000;\"><strong>\uc608 3: \ud2b9\uc815 \uc911\ub2e8\uc810 \ubc0f \ub808\uc774\ube14\uc744 \uc0ac\uc6a9\ud558\uc5ec \ubca1\ud130 \uc790\ub974\uae30<\/strong><\/span><\/h2>\n<p> <span style=\"color: #000000;\">\ub2e4\uc74c \ucf54\ub4dc\ub294 <strong>cut()<\/strong> \ud568\uc218\ub97c \uc0ac\uc6a9\ud558\uc5ec \uc0ac\uc6a9\uc790 \uc815\uc758 \ub808\uc774\ube14\uc774 \uc788\ub294 \ud2b9\uc815 \uc911\ub2e8\uc810\uc758 \ubca1\ud130\ub97c \uae30\ubc18\uc73c\ub85c <strong>\uc810<\/strong> \uc5f4\uc744 \uc790\ub974\ub294 <strong>\uce74\ud14c\uace0\ub9ac<\/strong> \ub77c\ub294 \uc0c8 \uc5f4\uc744 \ub9cc\ub4dc\ub294 \ubc29\ubc95\uc744 \ubcf4\uc5ec\uc90d\ub2c8\ub2e4.<\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <strong><span style=\"color: #008080;\"><span style=\"color: #000000;\"><span style=\"color: #008080;\">#create new column based on values in points column\n<\/span>df$category &lt;- cut(df$points,\n                   breaks=c(0, 10, 15, 20, 40),\n                   labels=c(' <span style=\"color: #ff0000;\">Bad<\/span> ', ' <span style=\"color: #ff0000;\">OK<\/span> ', ' <span style=\"color: #ff0000;\">Good<\/span> ', ' <span style=\"color: #ff0000;\">Great<\/span> '))\n\n<span style=\"color: #008080;\">#view updated data frame\n<\/span>df\n\n  player points category\n1 A 4 Bad\n2 B 7 Bad\n3 C 8 Bad\n4 D 12 OK\n5 E 14 OK\n6 F 16 Good\n7 G 20 Good\n8:26 A.M. Great\n9 I 36 Great\n<\/span><\/span><\/strong><\/pre>\n<p> <span style=\"color: #000000;\"><span style=\"color: #000000;\">\uc0c8\ub85c\uc6b4 <strong>\uce74\ud14c\uace0\ub9ac<\/strong> \uc5f4\uc740 <strong>\ud3ec\uc778\ud2b8<\/strong> \uc5f4\uc758 \ud574\ub2f9 \uac12\uc744 \uae30\uc900\uc73c\ub85c \uac01 \ud50c\ub808\uc774\uc5b4\uc758 \uc21c\uc704\ub97c Bad, OK, Good \ub610\ub294 Excellent\ub85c \uc9c0\uc815\ud569\ub2c8\ub2e4.<\/span><\/span><\/p>\n<p> <span style=\"color: #000000;\"><strong>\ucc38\uace0<\/strong> : \ub2e4\uc74c \uc624\ub958\ub97c \ubc29\uc9c0\ud558\ub824\uba74 \ub808\uc774\ube14 \uc218\ub294 \ud56d\uc0c1 \uc911\ub2e8\uc810 \uc218\ubcf4\ub2e4 1\uac1c \uc801\uc5b4\uc57c \ud569\ub2c8\ub2e4.<\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <strong><span style=\"color: #008080;\"><span style=\"color: #000000;\">Error in cut.default(df$points, breaks = c(0, 10, 15, 20, 40), labels = c(\"Bad\",: \n  lengths of 'breaks' and 'labels' differ<\/span><\/span><\/strong><\/pre>\n<h2> <span style=\"color: #000000;\"><strong>\ucd94\uac00 \ub9ac\uc18c\uc2a4<\/strong><\/span><\/h2>\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-\u1110\u1162\u11b8-\u1100\u1175\u1102\u1173\u11bc\/\" target=\"_blank\" rel=\"noopener\">R\uc5d0\uc11c tabulate() \ud568\uc218\ub97c \uc0ac\uc6a9\ud558\ub294 \ubc29\ubc95<\/a><br \/> <a href=\"https:\/\/statorials.org\/ko\/r\u110b\u1174-\u1107\u116e\u11ab\u1112\u1161\u11af-\u1112\u1161\u11b7\u1109\u116e\/\" target=\"_blank\" rel=\"noopener\">R\uc5d0\uc11c Split() \ud568\uc218\ub97c \uc0ac\uc6a9\ud558\ub294 \ubc29\ubc95<\/a><br \/> <a href=\"https:\/\/statorials.org\/ko\/r\u110b\u1174-\u110b\u1175\u11af\u110e\u1175-\u1112\u1161\u11b7\u1109\u116e\/\" target=\"_blank\" rel=\"noopener\">R\uc5d0\uc11c match() \ud568\uc218\ub97c \uc0ac\uc6a9\ud558\ub294 \ubc29\ubc95<\/a><br \/> <a href=\"https:\/\/statorials.org\/ko\/r\u110b\u1174-\u1107\u1169\u11a8\u110c\u1166-\u1112\u1161\u11b7\u1109\u116e\/\" target=\"_blank\" rel=\"noopener\">R\uc5d0\uc11c Replicate() \ud568\uc218\ub97c \uc0ac\uc6a9\ud558\ub294 \ubc29\ubc95<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>R\uc758 cut() \ud568\uc218\ub294 \uac12 \ubc94\uc704\ub97c \ube48\uc73c\ub85c \uc790\ub974\uace0 \uac01 \ube48\uc5d0 \ub300\ud55c \ub808\uc774\ube14\uc744 \uc9c0\uc815\ud558\ub294 \ub370 \uc0ac\uc6a9\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4. \uc774 \ud568\uc218\ub294 \ub2e4\uc74c \uad6c\ubb38\uc744 \uc0ac\uc6a9\ud569\ub2c8\ub2e4. \ucef7(x, \ub098\ub204\uae30, \ub808\uc774\ube14 = NULL, \u2026) \uae08: x : \ubca1\ud130 \uc774\ub984 break : \uc911\ub2e8\uc810 \uc218 \ub610\ub294 \uc911\ub2e8\uc810 \ubca1\ud130 labels : \uacb0\uacfc \uc800\uc7a5\uc18c\uc5d0 \ub300\ud55c \ub808\uc774\ube14 \ub2e4\uc74c \uc608\uc5d0\uc11c\ub294 R\uc758 \ub2e4\uc74c \ub370\uc774\ud130 \ud504\ub808\uc784\uc744 \uc0ac\uc6a9\ud558\uc5ec \ub2e4\uc591\ud55c \uc2dc\ub098\ub9ac\uc624\uc5d0\uc11c \uc774 [&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-4177","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 cut() \ud568\uc218\ub97c \uc0ac\uc6a9\ud558\ub294 \ubc29\ubc95 - Statorials<\/title>\n<meta name=\"description\" content=\"\uc774 \ud29c\ud1a0\ub9ac\uc5bc\uc5d0\uc11c\ub294 R\uc5d0\uc11c cut() \ud568\uc218\ub97c \uc0ac\uc6a9\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\u110b\u1174-\u110f\u1165\u11ba-\u1100\u1175\u1102\u1173\u11bc\/\" \/>\n<meta property=\"og:locale\" content=\"ko_KR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"R\uc5d0\uc11c cut() \ud568\uc218\ub97c \uc0ac\uc6a9\ud558\ub294 \ubc29\ubc95 - Statorials\" \/>\n<meta property=\"og:description\" content=\"\uc774 \ud29c\ud1a0\ub9ac\uc5bc\uc5d0\uc11c\ub294 R\uc5d0\uc11c cut() \ud568\uc218\ub97c \uc0ac\uc6a9\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\u110b\u1174-\u110f\u1165\u11ba-\u1100\u1175\u1102\u1173\u11bc\/\" \/>\n<meta property=\"og:site_name\" content=\"Statorials\" \/>\n<meta property=\"article:published_time\" content=\"2023-07-13T01:50:52+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%8b%e1%85%b4-%e1%84%8f%e1%85%a5%e1%86%ba-%e1%84%80%e1%85%b5%e1%84%82%e1%85%b3%e1%86%bc\/\",\"url\":\"https:\/\/statorials.org\/ko\/r%e1%84%8b%e1%85%b4-%e1%84%8f%e1%85%a5%e1%86%ba-%e1%84%80%e1%85%b5%e1%84%82%e1%85%b3%e1%86%bc\/\",\"name\":\"R\uc5d0\uc11c cut() \ud568\uc218\ub97c \uc0ac\uc6a9\ud558\ub294 \ubc29\ubc95 - Statorials\",\"isPartOf\":{\"@id\":\"https:\/\/statorials.org\/ko\/#website\"},\"datePublished\":\"2023-07-13T01:50:52+00:00\",\"dateModified\":\"2023-07-13T01:50:52+00:00\",\"author\":{\"@id\":\"https:\/\/statorials.org\/ko\/#\/schema\/person\/600556789b7d79cbaa9d9f0c721b74f4\"},\"description\":\"\uc774 \ud29c\ud1a0\ub9ac\uc5bc\uc5d0\uc11c\ub294 R\uc5d0\uc11c cut() \ud568\uc218\ub97c \uc0ac\uc6a9\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%8b%e1%85%b4-%e1%84%8f%e1%85%a5%e1%86%ba-%e1%84%80%e1%85%b5%e1%84%82%e1%85%b3%e1%86%bc\/#breadcrumb\"},\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/statorials.org\/ko\/r%e1%84%8b%e1%85%b4-%e1%84%8f%e1%85%a5%e1%86%ba-%e1%84%80%e1%85%b5%e1%84%82%e1%85%b3%e1%86%bc\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/statorials.org\/ko\/r%e1%84%8b%e1%85%b4-%e1%84%8f%e1%85%a5%e1%86%ba-%e1%84%80%e1%85%b5%e1%84%82%e1%85%b3%e1%86%bc\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\uc9d1\",\"item\":\"https:\/\/statorials.org\/ko\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"R\uc5d0\uc11c cut() \ud568\uc218\ub97c \uc0ac\uc6a9\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 cut() \ud568\uc218\ub97c \uc0ac\uc6a9\ud558\ub294 \ubc29\ubc95 - Statorials","description":"\uc774 \ud29c\ud1a0\ub9ac\uc5bc\uc5d0\uc11c\ub294 R\uc5d0\uc11c cut() \ud568\uc218\ub97c \uc0ac\uc6a9\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\u110b\u1174-\u110f\u1165\u11ba-\u1100\u1175\u1102\u1173\u11bc\/","og_locale":"ko_KR","og_type":"article","og_title":"R\uc5d0\uc11c cut() \ud568\uc218\ub97c \uc0ac\uc6a9\ud558\ub294 \ubc29\ubc95 - Statorials","og_description":"\uc774 \ud29c\ud1a0\ub9ac\uc5bc\uc5d0\uc11c\ub294 R\uc5d0\uc11c cut() \ud568\uc218\ub97c \uc0ac\uc6a9\ud558\ub294 \ubc29\ubc95\uc744 \uba87 \uac00\uc9c0 \uc608\uc640 \ud568\uaed8 \uc124\uba85\ud569\ub2c8\ub2e4.","og_url":"https:\/\/statorials.org\/ko\/r\u110b\u1174-\u110f\u1165\u11ba-\u1100\u1175\u1102\u1173\u11bc\/","og_site_name":"Statorials","article_published_time":"2023-07-13T01:50:52+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%8b%e1%85%b4-%e1%84%8f%e1%85%a5%e1%86%ba-%e1%84%80%e1%85%b5%e1%84%82%e1%85%b3%e1%86%bc\/","url":"https:\/\/statorials.org\/ko\/r%e1%84%8b%e1%85%b4-%e1%84%8f%e1%85%a5%e1%86%ba-%e1%84%80%e1%85%b5%e1%84%82%e1%85%b3%e1%86%bc\/","name":"R\uc5d0\uc11c cut() \ud568\uc218\ub97c \uc0ac\uc6a9\ud558\ub294 \ubc29\ubc95 - Statorials","isPartOf":{"@id":"https:\/\/statorials.org\/ko\/#website"},"datePublished":"2023-07-13T01:50:52+00:00","dateModified":"2023-07-13T01:50:52+00:00","author":{"@id":"https:\/\/statorials.org\/ko\/#\/schema\/person\/600556789b7d79cbaa9d9f0c721b74f4"},"description":"\uc774 \ud29c\ud1a0\ub9ac\uc5bc\uc5d0\uc11c\ub294 R\uc5d0\uc11c cut() \ud568\uc218\ub97c \uc0ac\uc6a9\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%8b%e1%85%b4-%e1%84%8f%e1%85%a5%e1%86%ba-%e1%84%80%e1%85%b5%e1%84%82%e1%85%b3%e1%86%bc\/#breadcrumb"},"inLanguage":"ko-KR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/statorials.org\/ko\/r%e1%84%8b%e1%85%b4-%e1%84%8f%e1%85%a5%e1%86%ba-%e1%84%80%e1%85%b5%e1%84%82%e1%85%b3%e1%86%bc\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/statorials.org\/ko\/r%e1%84%8b%e1%85%b4-%e1%84%8f%e1%85%a5%e1%86%ba-%e1%84%80%e1%85%b5%e1%84%82%e1%85%b3%e1%86%bc\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\uc9d1","item":"https:\/\/statorials.org\/ko\/"},{"@type":"ListItem","position":2,"name":"R\uc5d0\uc11c cut() \ud568\uc218\ub97c \uc0ac\uc6a9\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\/4177","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=4177"}],"version-history":[{"count":0,"href":"https:\/\/statorials.org\/ko\/wp-json\/wp\/v2\/posts\/4177\/revisions"}],"wp:attachment":[{"href":"https:\/\/statorials.org\/ko\/wp-json\/wp\/v2\/media?parent=4177"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/statorials.org\/ko\/wp-json\/wp\/v2\/categories?post=4177"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/statorials.org\/ko\/wp-json\/wp\/v2\/tags?post=4177"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}