{"id":456,"date":"2023-07-29T20:27:57","date_gmt":"2023-07-29T20:27:57","guid":{"rendered":"https:\/\/statorials.org\/ko\/r%e1%84%8b%e1%85%b4-%e1%84%80%e1%85%b3%e1%84%85%e1%85%a2%e1%84%91%e1%85%b3%e1%84%8b%e1%85%a6-%e1%84%8b%e1%85%a7%e1%84%85%e1%85%a5-%e1%84%80%e1%85%a8%e1%84%8b%e1%85%a7%e1%86%af%e1%84%8b%e1%85%b4\/"},"modified":"2023-07-29T20:27:57","modified_gmt":"2023-07-29T20:27:57","slug":"r%e1%84%8b%e1%85%b4-%e1%84%80%e1%85%b3%e1%84%85%e1%85%a2%e1%84%91%e1%85%b3%e1%84%8b%e1%85%a6-%e1%84%8b%e1%85%a7%e1%84%85%e1%85%a5-%e1%84%80%e1%85%a8%e1%84%8b%e1%85%a7%e1%86%af%e1%84%8b%e1%85%b4","status":"publish","type":"post","link":"https:\/\/statorials.org\/ko\/r%e1%84%8b%e1%85%b4-%e1%84%80%e1%85%b3%e1%84%85%e1%85%a2%e1%84%91%e1%85%b3%e1%84%8b%e1%85%a6-%e1%84%8b%e1%85%a7%e1%84%85%e1%85%a5-%e1%84%80%e1%85%a8%e1%84%8b%e1%85%a7%e1%86%af%e1%84%8b%e1%85%b4\/","title":{"rendered":"R\uc758 \ub2e8\uc77c \ucc28\ud2b8\uc5d0 \uc5ec\ub7ec \uc904(\ub370\uc774\ud130 \uc2dc\ub9ac\uc988)\uc744 \uadf8\ub9ac\ub294 \ubc29\ubc95"},"content":{"rendered":"<p><\/p>\n<hr>\n<p><span style=\"color: #000000;\">\uc774 \ud29c\ud1a0\ub9ac\uc5bc\uc5d0\uc11c\ub294 R\uc758 \ub2e8\uc77c \ucc28\ud2b8\uc5d0 \uc5ec\ub7ec \uc904(\uc608: \ub370\uc774\ud130 \uc2dc\ub9ac\uc988)\uc744 \uadf8\ub9ac\ub294 \ubc29\ubc95\uc744 \uc124\uba85\ud569\ub2c8\ub2e4.<\/span><\/p>\n<p> <span style=\"color: #000000;\">\uadf8\ub798\ud504\uc5d0 \uc5ec\ub7ec \uc120\uc744 \uadf8\ub9ac\ub824\uba74 \uae30\ubcf8 R\uc744 \uc0ac\uc6a9\ud558\uac70\ub098 ggplot2\uc640 \uac19\uc740 \ubcf4\ub2e4 \uc815\uad50\ud55c \ud328\ud0a4\uc9c0\ub97c \uc124\uce58\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4.<\/span><\/p>\n<h2> <strong>BaseR \uc0ac\uc6a9<\/strong><\/h2>\n<p> <span style=\"color: #000000;\">\ub2e4\uc74c\uc740 Base R\uc744 \uc0ac\uc6a9\ud558\uc5ec \ub2e8\uc77c \uadf8\ub798\ud504\uc5d0 \uc5ec\ub7ec \uc120\uc744 \uadf8\ub9ac\ub294 \ubc29\ubc95\uc5d0 \ub300\ud55c \ub450 \uac00\uc9c0 \uc608\uc785\ub2c8\ub2e4.<\/span><\/p>\n<h3> <strong><span style=\"color: #000000;\">\uc608\uc81c 1: Matplot \uc0ac\uc6a9<\/span><\/strong><\/h3>\n<p> <span style=\"color: #000000;\"><a href=\"https:\/\/en.wikipedia.org\/wiki\/Wide_and_narrow_data#Wide\" target=\"_blank\" rel=\"noopener\">\ub300\uaddc\ubaa8 \ud615\uc2dd\uc758<\/a> \ub370\uc774\ud130 \uc138\ud2b8\uac00 \uc788\ub294 \uacbd\uc6b0 \uadf8\ub798\ud504\uc5d0 \uc5ec\ub7ec \uc120\uc744 \uadf8\ub9ac\ub294 \uc26c\uc6b4 \ubc29\ubc95\uc740 matplot\uc744 \uc0ac\uc6a9\ud558\ub294 \uac83\uc785\ub2c8\ub2e4.<\/span><\/p>\n<pre style=\"background-color: #e5e5e5; font-size: 15px;\"> <strong><span style=\"color: #008080;\">#Create a fake dataset with 3 columns (ncol=3) composed of randomly generated\n#numbers from a uniform distribution with minimum = 1 and maximum = 10\n<\/span>data &lt;- matrix(runif(30,1,10), ncol=3)\ndata\n        [,1] [,2] [,3]\n#[1,] 5.371653 3.490919 3.953603\n#[2,] 9.551883 2.681054 9.506765\n#[3,] 3.525686 1.027758 8.059011\n#[4,] 9.923080 1.337935 1.112361\n#[5,] 7.273972 7.627546 1.174340\n#[6,] 8.859109 3.778144 9.384526\n#[7,] 9.614542 3.866029 7.301729\n#[8,] 9.288085 5.804041 8.347907\n#[9,] 1.696849 4.650687 7.220209\n#[10,] 5.820941 4.799682 5.243663\n\n<span style=\"color: #008080;\">#plot the three columns of the dataset as three lines and add a legend in<\/span>\n<span style=\"color: #008080;\">#the top right corner of the chart<\/span>\nmatplot(data, type = \"b\",pch=1,col = 1:3)\nlegend(\"topright\", legend = 1:3, col=1:3, pch=1)\n<\/strong><\/pre>\n<p> <span style=\"color: #000000;\">\uc774 \ucf54\ub4dc\ub294 \ub2e4\uc74c \uadf8\ub798\ud504\ub97c \uc0dd\uc131\ud569\ub2c8\ub2e4.<\/span><\/p>\n<h3> <strong><span style=\"color: #000000;\">\uc608 2: \uc810\uacfc \uc120 \uc0ac\uc6a9<\/span><\/strong><\/h3>\n<p> <span style=\"color: #000000;\">\uc5ec\ub7ec \uc120\uc744 \uadf8\ub9ac\ub294 \ub610 \ub2e4\ub978 \ubc29\ubc95\uc740 \ub0b4\uc7a5 R \ud568\uc218 points() \ubc0f line()\uc744 \uc0ac\uc6a9\ud558\uc5ec \ud55c \ubc88\uc5d0 \ud558\ub098\uc529 \uadf8\ub9ac\ub294 \uac83\uc785\ub2c8\ub2e4. \uc544\ub798 \ucf54\ub4dc\ub294 \uc774 \uc811\uadfc \ubc29\uc2dd\uc758 \uc608\ub97c \ubcf4\uc5ec\uc90d\ub2c8\ub2e4.<\/span><\/p>\n<pre style=\"background-color: #e5e5e5; font-size: 15px;\"> <strong><span style=\"color: #008080;\">#generate an x-axis along with three data series\n<\/span>x &lt;- c(1,2,3,4,5,6)\ny1 &lt;- c(2,4,7,9,12,19)\ny2 &lt;- c(1,5,9,8,9,13)\ny3 &lt;- c(3,6,12,14,17,15)\n<\/strong>\n<strong><span style=\"color: #008080;\">#plot the first data series using plot()<\/span>\nplot(x, y1, type=\"o\", col=\"blue\", pch=\"o\", ylab=\"y\", lty=1)\n\n<span style=\"color: #008080;\">#add second data series to the same chart using points() and lines()\n<\/span>points(x, y2, col=\"red\", pch=\"*\")\nlines(x, y2, col=\"red\",lty=2)\n\n<span style=\"color: #008080;\">#add third data series to the same chart using points() and lines()<\/span>\npoints(x, y3, col=\"dark red\",pch=\"+\")\nlines(x, y3, col=\"dark red\", lty=3)\n\n<span style=\"color: #008080;\">#add a legend in top left corner of chart at (x, y) coordinates = (1, 19)\n<\/span>legend(1,19,legend=c(\"y1\",\"y2\",\"y3\"), col=c(\"blue\",\"red\",\"black\"),\n                                   pch=c(\"o\",\"*\",\"+\"),lty=c(1,2,3), ncol=1)<\/strong><\/pre>\n<p> <span style=\"color: #000000;\">\uc774 \ucf54\ub4dc\ub294 \ub2e4\uc74c \uadf8\ub798\ud504\ub97c \uc0dd\uc131\ud569\ub2c8\ub2e4.<\/span><\/p>\n<h2> <strong>ggplot2 \uc0ac\uc6a9<\/strong><\/h2>\n<p> <span style=\"color: #000000;\">\ub2e4\uc74c\uc740 ggplot2\ub97c \uc0ac\uc6a9\ud558\uc5ec \ub2e8\uc77c \uadf8\ub798\ud504\uc5d0 \uc5ec\ub7ec \uc120\uc744 \uadf8\ub9ac\ub294 \ubc29\ubc95\uc758 \uc608\uc785\ub2c8\ub2e4.<\/span><\/p>\n<pre style=\"background-color: #e5e5e5; font-size: 15px;\"> <strong><span style=\"color: #008080;\">#install (if not already installed) and load ggplot2 package<\/span>\nif(!require(ggplot2)){install.packages(' <span style=\"color: #ff0000;\">ggplot2<\/span> ')}\n\n<span style=\"color: #008080;\">#generate fake dataset with three columns 'x', 'value', and 'variable'<\/span>\ndata &lt;- data. <span style=\"color: #3366ff;\">frame<\/span> (x=rep(1:5, 3),\n                   value=sample(1:100, 15), \n                   variable=rep(paste0(' <span style=\"color: #ff0000;\">series<\/span> ', 1:3), each=5))\n\n<span style=\"color: #008080;\">#view dataset\n<\/span>head(data)\n  x value variable\n1 1 93 series1\n2 2 64 series1\n3 3 36 series1\n4 4 17 series1\n5 5 95 series1\n6 1 80 series2\n\n<span style=\"color: #008080;\">#plot all three series on the same chart using geom_line()<\/span>\nggplot(data = data, aes(x=x, y=value)) + geom_line(aes(color=variable))\n<\/strong><\/pre>\n<p> <span style=\"color: #000000;\">\uadf8\ub7ec\uba74 \ub2e4\uc74c \uadf8\ub798\ud504\uac00 \uc0dd\uc131\ub429\ub2c8\ub2e4.<\/span><\/p>\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 ggplot2\uc5d0\uc11c \ub2e4\ub978 \uc77c\ubc18\uc801\uc778 \ud50c\ub85c\ud305 \uc791\uc5c5\uc744 \uc218\ud589\ud558\ub294 \ubc29\ubc95\uc744 \uc124\uba85\ud569\ub2c8\ub2e4.<\/span><\/p>\n<p> <a href=\"https:\/\/statorials.org\/ko\/ggplot-\u1107\u1165\u11b7\u1105\u1168-\u110b\u1171\u110e\u1175\/\" target=\"_blank\" rel=\"noopener\">ggplot2\uc5d0\uc11c \ubc94\ub840 \uc704\uce58\ub97c \ubcc0\uacbd\ud558\ub294 \ubc29\ubc95<\/a><br \/> <a href=\"https:\/\/statorials.org\/ko\/\u1107\u1165\u11b7\u1105\u1168-\u110c\u1166\u1106\u1169\u11a8-\u1107\u1167\u11ab\u1100\u1167\u11bc-ggplot2\/\" target=\"_blank\" rel=\"noopener\">ggplot2\uc5d0\uc11c \ubc94\ub840 \uc81c\ubaa9\uc744 \ubcc0\uacbd\ud558\ub294 \ubc29\ubc95<\/a><br \/> <a href=\"https:\/\/statorials.org\/ko\/ggplot-\u110b\u1167\u1107\u1162\u11a8\/\" target=\"_blank\" rel=\"noopener\">ggplot2\uc5d0\uc11c \uc5ec\ubc31\uc744 \ubcc0\uacbd\ud558\ub294 \ubc29\ubc95<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>\uc774 \ud29c\ud1a0\ub9ac\uc5bc\uc5d0\uc11c\ub294 R\uc758 \ub2e8\uc77c \ucc28\ud2b8\uc5d0 \uc5ec\ub7ec \uc904(\uc608: \ub370\uc774\ud130 \uc2dc\ub9ac\uc988)\uc744 \uadf8\ub9ac\ub294 \ubc29\ubc95\uc744 \uc124\uba85\ud569\ub2c8\ub2e4. \uadf8\ub798\ud504\uc5d0 \uc5ec\ub7ec \uc120\uc744 \uadf8\ub9ac\ub824\uba74 \uae30\ubcf8 R\uc744 \uc0ac\uc6a9\ud558\uac70\ub098 ggplot2\uc640 \uac19\uc740 \ubcf4\ub2e4 \uc815\uad50\ud55c \ud328\ud0a4\uc9c0\ub97c \uc124\uce58\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4. BaseR \uc0ac\uc6a9 \ub2e4\uc74c\uc740 Base R\uc744 \uc0ac\uc6a9\ud558\uc5ec \ub2e8\uc77c \uadf8\ub798\ud504\uc5d0 \uc5ec\ub7ec \uc120\uc744 \uadf8\ub9ac\ub294 \ubc29\ubc95\uc5d0 \ub300\ud55c \ub450 \uac00\uc9c0 \uc608\uc785\ub2c8\ub2e4. \uc608\uc81c 1: Matplot \uc0ac\uc6a9 \ub300\uaddc\ubaa8 \ud615\uc2dd\uc758 \ub370\uc774\ud130 \uc138\ud2b8\uac00 \uc788\ub294 \uacbd\uc6b0 \uadf8\ub798\ud504\uc5d0 \uc5ec\ub7ec [&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-456","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 \ub2e8\uc77c \ucc28\ud2b8\uc5d0 \uc5ec\ub7ec \uc904(\ub370\uc774\ud130 \uc2dc\ub9ac\uc988)\uc744 \uadf8\ub9ac\ub294 \ubc29\ubc95 - Statorials<\/title>\n<meta name=\"description\" content=\"\uc774 \ud29c\ud1a0\ub9ac\uc5bc\uc5d0\uc11c\ub294 R\uc5d0\uc11c \uadf8\ub798\ud504\uc5d0 \uc5ec\ub7ec \uc120\uc744 \uadf8\ub9ac\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-\u1100\u1173\u1105\u1162\u1111\u1173\u110b\u1166-\u110b\u1167\u1105\u1165-\u1100\u1168\u110b\u1167\u11af\u110b\u1174\/\" \/>\n<meta property=\"og:locale\" content=\"ko_KR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"R\uc758 \ub2e8\uc77c \ucc28\ud2b8\uc5d0 \uc5ec\ub7ec \uc904(\ub370\uc774\ud130 \uc2dc\ub9ac\uc988)\uc744 \uadf8\ub9ac\ub294 \ubc29\ubc95 - Statorials\" \/>\n<meta property=\"og:description\" content=\"\uc774 \ud29c\ud1a0\ub9ac\uc5bc\uc5d0\uc11c\ub294 R\uc5d0\uc11c \uadf8\ub798\ud504\uc5d0 \uc5ec\ub7ec \uc120\uc744 \uadf8\ub9ac\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-\u1100\u1173\u1105\u1162\u1111\u1173\u110b\u1166-\u110b\u1167\u1105\u1165-\u1100\u1168\u110b\u1167\u11af\u110b\u1174\/\" \/>\n<meta property=\"og:site_name\" content=\"Statorials\" \/>\n<meta property=\"article:published_time\" content=\"2023-07-29T20:27:57+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%80%e1%85%b3%e1%84%85%e1%85%a2%e1%84%91%e1%85%b3%e1%84%8b%e1%85%a6-%e1%84%8b%e1%85%a7%e1%84%85%e1%85%a5-%e1%84%80%e1%85%a8%e1%84%8b%e1%85%a7%e1%86%af%e1%84%8b%e1%85%b4\/\",\"url\":\"https:\/\/statorials.org\/ko\/r%e1%84%8b%e1%85%b4-%e1%84%80%e1%85%b3%e1%84%85%e1%85%a2%e1%84%91%e1%85%b3%e1%84%8b%e1%85%a6-%e1%84%8b%e1%85%a7%e1%84%85%e1%85%a5-%e1%84%80%e1%85%a8%e1%84%8b%e1%85%a7%e1%86%af%e1%84%8b%e1%85%b4\/\",\"name\":\"R\uc758 \ub2e8\uc77c \ucc28\ud2b8\uc5d0 \uc5ec\ub7ec \uc904(\ub370\uc774\ud130 \uc2dc\ub9ac\uc988)\uc744 \uadf8\ub9ac\ub294 \ubc29\ubc95 - Statorials\",\"isPartOf\":{\"@id\":\"https:\/\/statorials.org\/ko\/#website\"},\"datePublished\":\"2023-07-29T20:27:57+00:00\",\"dateModified\":\"2023-07-29T20:27:57+00:00\",\"author\":{\"@id\":\"https:\/\/statorials.org\/ko\/#\/schema\/person\/600556789b7d79cbaa9d9f0c721b74f4\"},\"description\":\"\uc774 \ud29c\ud1a0\ub9ac\uc5bc\uc5d0\uc11c\ub294 R\uc5d0\uc11c \uadf8\ub798\ud504\uc5d0 \uc5ec\ub7ec \uc120\uc744 \uadf8\ub9ac\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%80%e1%85%b3%e1%84%85%e1%85%a2%e1%84%91%e1%85%b3%e1%84%8b%e1%85%a6-%e1%84%8b%e1%85%a7%e1%84%85%e1%85%a5-%e1%84%80%e1%85%a8%e1%84%8b%e1%85%a7%e1%86%af%e1%84%8b%e1%85%b4\/#breadcrumb\"},\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/statorials.org\/ko\/r%e1%84%8b%e1%85%b4-%e1%84%80%e1%85%b3%e1%84%85%e1%85%a2%e1%84%91%e1%85%b3%e1%84%8b%e1%85%a6-%e1%84%8b%e1%85%a7%e1%84%85%e1%85%a5-%e1%84%80%e1%85%a8%e1%84%8b%e1%85%a7%e1%86%af%e1%84%8b%e1%85%b4\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/statorials.org\/ko\/r%e1%84%8b%e1%85%b4-%e1%84%80%e1%85%b3%e1%84%85%e1%85%a2%e1%84%91%e1%85%b3%e1%84%8b%e1%85%a6-%e1%84%8b%e1%85%a7%e1%84%85%e1%85%a5-%e1%84%80%e1%85%a8%e1%84%8b%e1%85%a7%e1%86%af%e1%84%8b%e1%85%b4\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\uc9d1\",\"item\":\"https:\/\/statorials.org\/ko\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"R\uc758 \ub2e8\uc77c \ucc28\ud2b8\uc5d0 \uc5ec\ub7ec \uc904(\ub370\uc774\ud130 \uc2dc\ub9ac\uc988)\uc744 \uadf8\ub9ac\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\uc758 \ub2e8\uc77c \ucc28\ud2b8\uc5d0 \uc5ec\ub7ec \uc904(\ub370\uc774\ud130 \uc2dc\ub9ac\uc988)\uc744 \uadf8\ub9ac\ub294 \ubc29\ubc95 - Statorials","description":"\uc774 \ud29c\ud1a0\ub9ac\uc5bc\uc5d0\uc11c\ub294 R\uc5d0\uc11c \uadf8\ub798\ud504\uc5d0 \uc5ec\ub7ec \uc120\uc744 \uadf8\ub9ac\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-\u1100\u1173\u1105\u1162\u1111\u1173\u110b\u1166-\u110b\u1167\u1105\u1165-\u1100\u1168\u110b\u1167\u11af\u110b\u1174\/","og_locale":"ko_KR","og_type":"article","og_title":"R\uc758 \ub2e8\uc77c \ucc28\ud2b8\uc5d0 \uc5ec\ub7ec \uc904(\ub370\uc774\ud130 \uc2dc\ub9ac\uc988)\uc744 \uadf8\ub9ac\ub294 \ubc29\ubc95 - Statorials","og_description":"\uc774 \ud29c\ud1a0\ub9ac\uc5bc\uc5d0\uc11c\ub294 R\uc5d0\uc11c \uadf8\ub798\ud504\uc5d0 \uc5ec\ub7ec \uc120\uc744 \uadf8\ub9ac\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-\u1100\u1173\u1105\u1162\u1111\u1173\u110b\u1166-\u110b\u1167\u1105\u1165-\u1100\u1168\u110b\u1167\u11af\u110b\u1174\/","og_site_name":"Statorials","article_published_time":"2023-07-29T20:27:57+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%80%e1%85%b3%e1%84%85%e1%85%a2%e1%84%91%e1%85%b3%e1%84%8b%e1%85%a6-%e1%84%8b%e1%85%a7%e1%84%85%e1%85%a5-%e1%84%80%e1%85%a8%e1%84%8b%e1%85%a7%e1%86%af%e1%84%8b%e1%85%b4\/","url":"https:\/\/statorials.org\/ko\/r%e1%84%8b%e1%85%b4-%e1%84%80%e1%85%b3%e1%84%85%e1%85%a2%e1%84%91%e1%85%b3%e1%84%8b%e1%85%a6-%e1%84%8b%e1%85%a7%e1%84%85%e1%85%a5-%e1%84%80%e1%85%a8%e1%84%8b%e1%85%a7%e1%86%af%e1%84%8b%e1%85%b4\/","name":"R\uc758 \ub2e8\uc77c \ucc28\ud2b8\uc5d0 \uc5ec\ub7ec \uc904(\ub370\uc774\ud130 \uc2dc\ub9ac\uc988)\uc744 \uadf8\ub9ac\ub294 \ubc29\ubc95 - Statorials","isPartOf":{"@id":"https:\/\/statorials.org\/ko\/#website"},"datePublished":"2023-07-29T20:27:57+00:00","dateModified":"2023-07-29T20:27:57+00:00","author":{"@id":"https:\/\/statorials.org\/ko\/#\/schema\/person\/600556789b7d79cbaa9d9f0c721b74f4"},"description":"\uc774 \ud29c\ud1a0\ub9ac\uc5bc\uc5d0\uc11c\ub294 R\uc5d0\uc11c \uadf8\ub798\ud504\uc5d0 \uc5ec\ub7ec \uc120\uc744 \uadf8\ub9ac\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%80%e1%85%b3%e1%84%85%e1%85%a2%e1%84%91%e1%85%b3%e1%84%8b%e1%85%a6-%e1%84%8b%e1%85%a7%e1%84%85%e1%85%a5-%e1%84%80%e1%85%a8%e1%84%8b%e1%85%a7%e1%86%af%e1%84%8b%e1%85%b4\/#breadcrumb"},"inLanguage":"ko-KR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/statorials.org\/ko\/r%e1%84%8b%e1%85%b4-%e1%84%80%e1%85%b3%e1%84%85%e1%85%a2%e1%84%91%e1%85%b3%e1%84%8b%e1%85%a6-%e1%84%8b%e1%85%a7%e1%84%85%e1%85%a5-%e1%84%80%e1%85%a8%e1%84%8b%e1%85%a7%e1%86%af%e1%84%8b%e1%85%b4\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/statorials.org\/ko\/r%e1%84%8b%e1%85%b4-%e1%84%80%e1%85%b3%e1%84%85%e1%85%a2%e1%84%91%e1%85%b3%e1%84%8b%e1%85%a6-%e1%84%8b%e1%85%a7%e1%84%85%e1%85%a5-%e1%84%80%e1%85%a8%e1%84%8b%e1%85%a7%e1%86%af%e1%84%8b%e1%85%b4\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\uc9d1","item":"https:\/\/statorials.org\/ko\/"},{"@type":"ListItem","position":2,"name":"R\uc758 \ub2e8\uc77c \ucc28\ud2b8\uc5d0 \uc5ec\ub7ec \uc904(\ub370\uc774\ud130 \uc2dc\ub9ac\uc988)\uc744 \uadf8\ub9ac\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\/456","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=456"}],"version-history":[{"count":0,"href":"https:\/\/statorials.org\/ko\/wp-json\/wp\/v2\/posts\/456\/revisions"}],"wp:attachment":[{"href":"https:\/\/statorials.org\/ko\/wp-json\/wp\/v2\/media?parent=456"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/statorials.org\/ko\/wp-json\/wp\/v2\/categories?post=456"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/statorials.org\/ko\/wp-json\/wp\/v2\/tags?post=456"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}