{"id":955,"date":"2023-07-28T04:47:06","date_gmt":"2023-07-28T04:47:06","guid":{"rendered":"https:\/\/statorials.org\/ko\/dplyr-%e1%84%89%e1%85%a1%e1%86%bc%e1%84%83%e1%85%a2-%e1%84%8c%e1%85%ae%e1%84%91%e1%85%a1%e1%84%89%e1%85%ae\/"},"modified":"2023-07-28T04:47:06","modified_gmt":"2023-07-28T04:47:06","slug":"dplyr-%e1%84%89%e1%85%a1%e1%86%bc%e1%84%83%e1%85%a2-%e1%84%8c%e1%85%ae%e1%84%91%e1%85%a1%e1%84%89%e1%85%ae","status":"publish","type":"post","link":"https:\/\/statorials.org\/ko\/dplyr-%e1%84%89%e1%85%a1%e1%86%bc%e1%84%83%e1%85%a2-%e1%84%8c%e1%85%ae%e1%84%91%e1%85%a1%e1%84%89%e1%85%ae\/","title":{"rendered":"Dplyr\uc744 \uc0ac\uc6a9\ud558\uc5ec \uc0c1\ub300 \ube48\ub3c4\ub97c \uacc4\uc0b0\ud558\ub294 \ubc29\ubc95"},"content":{"rendered":"<p><\/p>\n<hr>\n<p><span style=\"color: #000000;\">R\uc5d0\uc11c \ub370\uc774\ud130 \ud504\ub808\uc784\uc758 \ud558\ub098 \uc774\uc0c1\uc758 \uc5f4\uc5d0 \uc788\ub294 \uac12\uc758 \uc0c1\ub300 \ube48\ub3c4\/\ube44\uc728\uc744 \uacc4\uc0b0\ud558\ub824\ub294 \uacbd\uc6b0\uac00 \uc885\uc885 \uc788\uc2b5\ub2c8\ub2e4.<\/span><\/p>\n<p> <span style=\"color: #000000;\">\ub2e4\ud589\uc2a4\ub7fd\uac8c\ub3c4 <a href=\"https:\/\/dplyr.tidyverse.org\/\" target=\"_blank\" rel=\"noopener noreferrer\">dplyr<\/a> \ud328\ud0a4\uc9c0\uc758 \ud568\uc218\ub97c \uc0ac\uc6a9\ud558\uba74 \uc774 \uc791\uc5c5\uc744 \uc27d\uac8c \uc218\ud589\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4. \uc774 \ud29c\ud1a0\ub9ac\uc5bc\uc5d0\uc11c\ub294 \uc774\ub7ec\ud55c \ud568\uc218\ub97c \uc0ac\uc6a9\ud558\uc5ec \ub2e4\uc74c \ub370\uc774\ud130 \ud504\ub808\uc784\uc5d0\uc11c \uc0c1\ub300 \ube48\ub3c4\ub97c \uacc4\uc0b0\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;\">#create data frame<\/span>\ndf &lt;- data.frame(team = c('A', 'A', 'A', 'B', 'B', 'B', 'B'),\n                 position = c('G', 'F', 'F', 'G', 'G', 'G', 'F'),\n                 points = c(12, 15, 19, 22, 32, 34, 39))\n\n<span style=\"color: #008080;\">#view data frame\n<\/span>df\n\n  team position points\n1 AG 12\n2 AF15\n3 FY 19\n4 BG 22\n5 BG 32\n6 BG 34\n7 BF 39\n<\/strong><\/pre>\n<h3> <span style=\"color: #000000;\"><strong>\uc608\uc2dc 1: \ubcc0\uc218\uc758 \uc0c1\ub300 \ube48\ub3c4<\/strong><\/span><\/h3>\n<p> <span style=\"color: #000000;\">\ub2e4\uc74c \ucf54\ub4dc\ub294 \ub370\uc774\ud130 \ud504\ub808\uc784\uc5d0\uc11c \uac01 \ud300\uc758 \uc0c1\ub300 \ube48\ub3c4\ub97c \uacc4\uc0b0\ud558\ub294 \ubc29\ubc95\uc744 \ubcf4\uc5ec\uc90d\ub2c8\ub2e4.<\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <strong>library(dplyr)\n\ndf %&gt;%\n  <span style=\"color: #3366ff;\">group_by<\/span> (team) %&gt;%\n  <span style=\"color: #3366ff;\">summarize<\/span> (n = n()) %&gt;%\n  <span style=\"color: #3366ff;\">mutate<\/span> (freq = n \/ sum(n))\n\n# A tibble: 2 x 3\n  team n freq\n    \n1 to 3 0.429\n2 B 4 0.571\n<\/strong><\/pre>\n<p> <span style=\"color: #000000;\">\uc774\ub294 A\ud300\uc774 \ub370\uc774\ud130 \ud504\ub808\uc784\uc758 \ubaa8\ub4e0 \ud589 \uc911 42.9%\ub97c \ucc28\uc9c0\ud558\uace0 B\ud300\uc774 \ub098\uba38\uc9c0 57.1%\ub97c \ucc28\uc9c0\ud55c\ub2e4\ub294 \uac83\uc744 \uc54c\ub824\uc90d\ub2c8\ub2e4. \uc774 \ub458\uc744 \ud569\uce58\uba74 100%\uac00 \ub41c\ub2e4\ub294 \uc810\uc5d0 \uc720\uc758\ud558\uc138\uc694.<\/span><\/p>\n<p> <span style=\"color: #000000;\"><strong>\uad00\ub828 \ud56d\ubaa9:<\/strong> <a href=\"https:\/\/statorials.org\/ko\/\u1100\u1173\u1105\u116e\u11b8-\u110c\u1162\u1100\u1162-\u1103\u1166\u110b\u1175\u1110\u1165-r\/\" target=\"_blank\" rel=\"noopener noreferrer\">\uc804\uccb4 \uac00\uc774\ub4dc: R\uc5d0\uc11c \ub370\uc774\ud130\ub97c \uadf8\ub8f9\ud654\ud558\uace0 \uc694\uc57d\ud558\ub294 \ubc29\ubc95<\/a><\/span><\/p>\n<h3> <span style=\"color: #000000;\"><strong>\uc608\uc2dc 2: \uc5ec\ub7ec \ubcc0\uc218\uc758 \uc0c1\ub300 \ube48\ub3c4<\/strong><\/span><\/h3>\n<p> <span style=\"color: #000000;\">\ub2e4\uc74c \ucf54\ub4dc\ub294 <em>\ud300\ub2f9<\/em> \uc704\uce58\uc758 \uc0c1\ub300 \ube48\ub3c4\ub97c \uacc4\uc0b0\ud558\ub294 \ubc29\ubc95\uc744 \ubcf4\uc5ec\uc90d\ub2c8\ub2e4.<\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <strong>library(dplyr)\n\ndf %&gt;%\n  <span style=\"color: #3366ff;\">group_by<\/span> (team, position) %&gt;%\n  <span style=\"color: #3366ff;\">summarize<\/span> (n = n()) %&gt;%\n  <span style=\"color: #3366ff;\">mutate<\/span> (freq = n \/ sum(n))\n\n# A tibble: 4 x 4\n# Groups: team [2]\n  team position n freq\n       \n1 AF 2 0.667\n2 AG 1 0.333\n3 BF 1 0.250\n4 BG 3 0.750\n<\/strong><\/pre>\n<p> <span style=\"color: #000000;\">\uc774\ub294 \ub2e4\uc74c\uc744 \uc54c\ub824\uc90d\ub2c8\ub2e4.<\/span><\/p>\n<ul>\n<li> <span style=\"color: #000000;\">A\ud300 \uc120\uc218\uc758 66.7%\uac00 F\ud3ec\uc9c0\uc158\uc5d0 \uc788\uc2b5\ub2c8\ub2e4.<\/span><\/li>\n<li> <span style=\"color: #000000;\">A\ud300 \uc120\uc218\uc758 33.3%\uac00 G \ud3ec\uc9c0\uc158\uc5d0 \uc788\uc2b5\ub2c8\ub2e4.<\/span><\/li>\n<li> <span style=\"color: #000000;\">A\ud300 \uc120\uc218\uc758 25.0%\uac00 F\ud3ec\uc9c0\uc158\uc5d0 \uc788\uc2b5\ub2c8\ub2e4.<\/span><\/li>\n<li> <span style=\"color: #000000;\">B\ud300 \uc120\uc218\uc758 75.0%\uac00 G \ud3ec\uc9c0\uc158\uc5d0 \uc788\ub2e4.<\/span><\/li>\n<\/ul>\n<p> <span style=\"color: #000000;\"><strong>\uad00\ub828:<\/strong> <a href=\"https:\/\/statorials.org\/ko\/mutate\u1105\u1173\u11af-\u1109\u1161\u110b\u116d\u11bc\u1112\u1161\u110b\u1167-r\u110b\u1166\u1109\u1165-\u1109\u1162-\u1107\u1167\u11ab\u1109\u116e\u1105\u1173\u11af-\u1106\u1161\u11ab\u1103\u1173\u1102\u1173\u11ab-\u1107\u1161\u11bc\u1107\u1165\u11b8\/\" target=\"_blank\" rel=\"noopener noreferrer\">Mutate\ub97c \uc0ac\uc6a9\ud558\uc5ec R\uc5d0\uc11c \uc0c8 \ubcc0\uc218\ub97c \ub9cc\ub4dc\ub294 \ubc29\ubc95<\/a><\/span><\/p>\n<h3> <span style=\"color: #000000;\"><strong>\uc608 3: \uc0c1\ub300 \ube48\ub3c4\ub97c \ubc31\ubd84\uc728\ub85c \ud45c\uc2dc<\/strong><\/span><\/h3>\n<p> <span style=\"color: #000000;\">\ub2e4\uc74c \ucf54\ub4dc\ub294 \ud300\ubcc4 \uc704\uce58\uc758 \uc0c1\ub300 \ube48\ub3c4\ub97c \uacc4\uc0b0\ud558\ub294 \ubc29\ubc95\uacfc \uc774\ub7ec\ud55c \uc0c1\ub300 \ube48\ub3c4\ub97c \ubc31\ubd84\uc728\ub85c \ud45c\uc2dc\ud558\ub294 \ubc29\ubc95\uc744 \ubcf4\uc5ec\uc90d\ub2c8\ub2e4.<\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <strong>library(dplyr)\n\ndf %&gt;%\n  <span style=\"color: #3366ff;\">group_by<\/span> (team, position) %&gt;%\n  <span style=\"color: #3366ff;\">summarize<\/span> (n = n()) %&gt;%\n  <span style=\"color: #3366ff;\">mutate<\/span> (freq = paste0(round(100 * n\/sum(n), 0), ' <span style=\"color: #008000;\">%<\/span> '))\n\n# A tibble: 4 x 4\n# Groups: team [2]\n  team position n freq \n       \n1 AF 2 67%  \n2 GA 1 33%  \n3 BF 1 25%  \n4 BG 3 75%<\/strong><\/pre>\n<p> <span style=\"color: #000000;\"><em><a href=\"https:\/\/statorials.org\/ko\/\u1110\u1169\u11bc\u1100\u1168\u1112\u1161\u11a8\u110b\u1173\u11ab-\u1100\u1161\u11ab\u1103\u1161\u11ab\u1112\u1161\u1100\u1169-\u110c\u1175\u11a8\u110c\u1165\u11b8\u110c\u1165\u11a8\u110b\u1175\u11ab-\u1107\u1161\u11bc\u1107\u1165\u11b8\u110b\u1173\u1105\u1169-\u1100\u1162\u1102\u1167\u11b7\u110b\u1173\u11af-\u1109\u1165\u11af\u1106\u1167\u11bc\u1112\u1161\u1106\u1173\u1105\u1169-\u1110\u1169\u11bc\u1100\u1168\u1105\u1173\u11af-\u1103\u1165-\u1109\u1171\u11b8\u1100\u1166-\u1107\u1162\u110b\u116e\u11af-\u1109\u116e-\u110b\u1175\u11bb\u1109\u1173\u11b8\u1102\u1175\u1103\u1161.\/\" target=\"_blank\" rel=\"noopener noreferrer\">\uc5ec\uae30\uc5d0\uc11c<\/a> \ub354 \ub9ce\uc740 R \ud29c\ud1a0\ub9ac\uc5bc\uc744 \ucc3e\uc744 \uc218 \uc788\uc2b5\ub2c8\ub2e4.<\/em><\/span><\/p>\n","protected":false},"excerpt":{"rendered":"<p>R\uc5d0\uc11c \ub370\uc774\ud130 \ud504\ub808\uc784\uc758 \ud558\ub098 \uc774\uc0c1\uc758 \uc5f4\uc5d0 \uc788\ub294 \uac12\uc758 \uc0c1\ub300 \ube48\ub3c4\/\ube44\uc728\uc744 \uacc4\uc0b0\ud558\ub824\ub294 \uacbd\uc6b0\uac00 \uc885\uc885 \uc788\uc2b5\ub2c8\ub2e4. \ub2e4\ud589\uc2a4\ub7fd\uac8c\ub3c4 dplyr \ud328\ud0a4\uc9c0\uc758 \ud568\uc218\ub97c \uc0ac\uc6a9\ud558\uba74 \uc774 \uc791\uc5c5\uc744 \uc27d\uac8c \uc218\ud589\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4. \uc774 \ud29c\ud1a0\ub9ac\uc5bc\uc5d0\uc11c\ub294 \uc774\ub7ec\ud55c \ud568\uc218\ub97c \uc0ac\uc6a9\ud558\uc5ec \ub2e4\uc74c \ub370\uc774\ud130 \ud504\ub808\uc784\uc5d0\uc11c \uc0c1\ub300 \ube48\ub3c4\ub97c \uacc4\uc0b0\ud558\ub294 \ubc29\ubc95\uc744 \ubcf4\uc5ec\uc90d\ub2c8\ub2e4. #create data frame df &lt;- data.frame(team = c(&#8216;A&#8217;, &#8216;A&#8217;, &#8216;A&#8217;, &#8216;B&#8217;, &#8216;B&#8217;, &#8216;B&#8217;, &#8216;B&#8217;), position = c(&#8216;G&#8217;, [&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-955","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>dplyr\uc744 \uc0ac\uc6a9\ud558\uc5ec \uc0c1\ub300 \ube48\ub3c4\ub97c \uacc4\uc0b0\ud558\ub294 \ubc29\ubc95 - \ud1b5\uacc4\ud559<\/title>\n<meta name=\"description\" content=\"dplyr \ud328\ud0a4\uc9c0\ub97c \uc0ac\uc6a9\ud558\uc5ec R\uc758 \ub370\uc774\ud130 \ud504\ub808\uc784\uc5d0\uc11c \uc0c1\ub300 \ube48\ub3c4\ub97c \uacc4\uc0b0\ud558\ub294 \ubc29\ubc95\uc5d0 \ub300\ud55c \uac04\ub2e8\ud55c \uc124\uba85\uc785\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\/dplyr-\u1109\u1161\u11bc\u1103\u1162-\u110c\u116e\u1111\u1161\u1109\u116e\/\" \/>\n<meta property=\"og:locale\" content=\"ko_KR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"dplyr\uc744 \uc0ac\uc6a9\ud558\uc5ec \uc0c1\ub300 \ube48\ub3c4\ub97c \uacc4\uc0b0\ud558\ub294 \ubc29\ubc95 - \ud1b5\uacc4\ud559\" \/>\n<meta property=\"og:description\" content=\"dplyr \ud328\ud0a4\uc9c0\ub97c \uc0ac\uc6a9\ud558\uc5ec R\uc758 \ub370\uc774\ud130 \ud504\ub808\uc784\uc5d0\uc11c \uc0c1\ub300 \ube48\ub3c4\ub97c \uacc4\uc0b0\ud558\ub294 \ubc29\ubc95\uc5d0 \ub300\ud55c \uac04\ub2e8\ud55c \uc124\uba85\uc785\ub2c8\ub2e4.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/statorials.org\/ko\/dplyr-\u1109\u1161\u11bc\u1103\u1162-\u110c\u116e\u1111\u1161\u1109\u116e\/\" \/>\n<meta property=\"og:site_name\" content=\"Statorials\" \/>\n<meta property=\"article:published_time\" content=\"2023-07-28T04:47:06+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\/dplyr-%e1%84%89%e1%85%a1%e1%86%bc%e1%84%83%e1%85%a2-%e1%84%8c%e1%85%ae%e1%84%91%e1%85%a1%e1%84%89%e1%85%ae\/\",\"url\":\"https:\/\/statorials.org\/ko\/dplyr-%e1%84%89%e1%85%a1%e1%86%bc%e1%84%83%e1%85%a2-%e1%84%8c%e1%85%ae%e1%84%91%e1%85%a1%e1%84%89%e1%85%ae\/\",\"name\":\"dplyr\uc744 \uc0ac\uc6a9\ud558\uc5ec \uc0c1\ub300 \ube48\ub3c4\ub97c \uacc4\uc0b0\ud558\ub294 \ubc29\ubc95 - \ud1b5\uacc4\ud559\",\"isPartOf\":{\"@id\":\"https:\/\/statorials.org\/ko\/#website\"},\"datePublished\":\"2023-07-28T04:47:06+00:00\",\"dateModified\":\"2023-07-28T04:47:06+00:00\",\"author\":{\"@id\":\"https:\/\/statorials.org\/ko\/#\/schema\/person\/600556789b7d79cbaa9d9f0c721b74f4\"},\"description\":\"dplyr \ud328\ud0a4\uc9c0\ub97c \uc0ac\uc6a9\ud558\uc5ec R\uc758 \ub370\uc774\ud130 \ud504\ub808\uc784\uc5d0\uc11c \uc0c1\ub300 \ube48\ub3c4\ub97c \uacc4\uc0b0\ud558\ub294 \ubc29\ubc95\uc5d0 \ub300\ud55c \uac04\ub2e8\ud55c \uc124\uba85\uc785\ub2c8\ub2e4.\",\"breadcrumb\":{\"@id\":\"https:\/\/statorials.org\/ko\/dplyr-%e1%84%89%e1%85%a1%e1%86%bc%e1%84%83%e1%85%a2-%e1%84%8c%e1%85%ae%e1%84%91%e1%85%a1%e1%84%89%e1%85%ae\/#breadcrumb\"},\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/statorials.org\/ko\/dplyr-%e1%84%89%e1%85%a1%e1%86%bc%e1%84%83%e1%85%a2-%e1%84%8c%e1%85%ae%e1%84%91%e1%85%a1%e1%84%89%e1%85%ae\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/statorials.org\/ko\/dplyr-%e1%84%89%e1%85%a1%e1%86%bc%e1%84%83%e1%85%a2-%e1%84%8c%e1%85%ae%e1%84%91%e1%85%a1%e1%84%89%e1%85%ae\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\uc9d1\",\"item\":\"https:\/\/statorials.org\/ko\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Dplyr\uc744 \uc0ac\uc6a9\ud558\uc5ec \uc0c1\ub300 \ube48\ub3c4\ub97c \uacc4\uc0b0\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":"dplyr\uc744 \uc0ac\uc6a9\ud558\uc5ec \uc0c1\ub300 \ube48\ub3c4\ub97c \uacc4\uc0b0\ud558\ub294 \ubc29\ubc95 - \ud1b5\uacc4\ud559","description":"dplyr \ud328\ud0a4\uc9c0\ub97c \uc0ac\uc6a9\ud558\uc5ec R\uc758 \ub370\uc774\ud130 \ud504\ub808\uc784\uc5d0\uc11c \uc0c1\ub300 \ube48\ub3c4\ub97c \uacc4\uc0b0\ud558\ub294 \ubc29\ubc95\uc5d0 \ub300\ud55c \uac04\ub2e8\ud55c \uc124\uba85\uc785\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\/dplyr-\u1109\u1161\u11bc\u1103\u1162-\u110c\u116e\u1111\u1161\u1109\u116e\/","og_locale":"ko_KR","og_type":"article","og_title":"dplyr\uc744 \uc0ac\uc6a9\ud558\uc5ec \uc0c1\ub300 \ube48\ub3c4\ub97c \uacc4\uc0b0\ud558\ub294 \ubc29\ubc95 - \ud1b5\uacc4\ud559","og_description":"dplyr \ud328\ud0a4\uc9c0\ub97c \uc0ac\uc6a9\ud558\uc5ec R\uc758 \ub370\uc774\ud130 \ud504\ub808\uc784\uc5d0\uc11c \uc0c1\ub300 \ube48\ub3c4\ub97c \uacc4\uc0b0\ud558\ub294 \ubc29\ubc95\uc5d0 \ub300\ud55c \uac04\ub2e8\ud55c \uc124\uba85\uc785\ub2c8\ub2e4.","og_url":"https:\/\/statorials.org\/ko\/dplyr-\u1109\u1161\u11bc\u1103\u1162-\u110c\u116e\u1111\u1161\u1109\u116e\/","og_site_name":"Statorials","article_published_time":"2023-07-28T04:47:06+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\/dplyr-%e1%84%89%e1%85%a1%e1%86%bc%e1%84%83%e1%85%a2-%e1%84%8c%e1%85%ae%e1%84%91%e1%85%a1%e1%84%89%e1%85%ae\/","url":"https:\/\/statorials.org\/ko\/dplyr-%e1%84%89%e1%85%a1%e1%86%bc%e1%84%83%e1%85%a2-%e1%84%8c%e1%85%ae%e1%84%91%e1%85%a1%e1%84%89%e1%85%ae\/","name":"dplyr\uc744 \uc0ac\uc6a9\ud558\uc5ec \uc0c1\ub300 \ube48\ub3c4\ub97c \uacc4\uc0b0\ud558\ub294 \ubc29\ubc95 - \ud1b5\uacc4\ud559","isPartOf":{"@id":"https:\/\/statorials.org\/ko\/#website"},"datePublished":"2023-07-28T04:47:06+00:00","dateModified":"2023-07-28T04:47:06+00:00","author":{"@id":"https:\/\/statorials.org\/ko\/#\/schema\/person\/600556789b7d79cbaa9d9f0c721b74f4"},"description":"dplyr \ud328\ud0a4\uc9c0\ub97c \uc0ac\uc6a9\ud558\uc5ec R\uc758 \ub370\uc774\ud130 \ud504\ub808\uc784\uc5d0\uc11c \uc0c1\ub300 \ube48\ub3c4\ub97c \uacc4\uc0b0\ud558\ub294 \ubc29\ubc95\uc5d0 \ub300\ud55c \uac04\ub2e8\ud55c \uc124\uba85\uc785\ub2c8\ub2e4.","breadcrumb":{"@id":"https:\/\/statorials.org\/ko\/dplyr-%e1%84%89%e1%85%a1%e1%86%bc%e1%84%83%e1%85%a2-%e1%84%8c%e1%85%ae%e1%84%91%e1%85%a1%e1%84%89%e1%85%ae\/#breadcrumb"},"inLanguage":"ko-KR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/statorials.org\/ko\/dplyr-%e1%84%89%e1%85%a1%e1%86%bc%e1%84%83%e1%85%a2-%e1%84%8c%e1%85%ae%e1%84%91%e1%85%a1%e1%84%89%e1%85%ae\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/statorials.org\/ko\/dplyr-%e1%84%89%e1%85%a1%e1%86%bc%e1%84%83%e1%85%a2-%e1%84%8c%e1%85%ae%e1%84%91%e1%85%a1%e1%84%89%e1%85%ae\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\uc9d1","item":"https:\/\/statorials.org\/ko\/"},{"@type":"ListItem","position":2,"name":"Dplyr\uc744 \uc0ac\uc6a9\ud558\uc5ec \uc0c1\ub300 \ube48\ub3c4\ub97c \uacc4\uc0b0\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\/955","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=955"}],"version-history":[{"count":0,"href":"https:\/\/statorials.org\/ko\/wp-json\/wp\/v2\/posts\/955\/revisions"}],"wp:attachment":[{"href":"https:\/\/statorials.org\/ko\/wp-json\/wp\/v2\/media?parent=955"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/statorials.org\/ko\/wp-json\/wp\/v2\/categories?post=955"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/statorials.org\/ko\/wp-json\/wp\/v2\/tags?post=955"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}