{"id":472,"date":"2023-07-29T19:13:06","date_gmt":"2023-07-29T19:13:06","guid":{"rendered":"https:\/\/statorials.org\/ko\/ggplot2%e1%84%85%e1%85%b3%e1%86%af-%e1%84%89%e1%85%a1%e1%84%8b%e1%85%ad%e1%86%bc%e1%84%92%e1%85%a1%e1%84%8b%e1%85%a7-r%e1%84%8b%e1%85%b4-%e1%84%87%e1%85%a5%e1%86%b7%e1%84%91%e1%85%b3-%e1%84%91\/"},"modified":"2023-07-29T19:13:06","modified_gmt":"2023-07-29T19:13:06","slug":"ggplot2%e1%84%85%e1%85%b3%e1%86%af-%e1%84%89%e1%85%a1%e1%84%8b%e1%85%ad%e1%86%bc%e1%84%92%e1%85%a1%e1%84%8b%e1%85%a7-r%e1%84%8b%e1%85%b4-%e1%84%87%e1%85%a5%e1%86%b7%e1%84%91%e1%85%b3-%e1%84%91","status":"publish","type":"post","link":"https:\/\/statorials.org\/ko\/ggplot2%e1%84%85%e1%85%b3%e1%86%af-%e1%84%89%e1%85%a1%e1%84%8b%e1%85%ad%e1%86%bc%e1%84%92%e1%85%a1%e1%84%8b%e1%85%a7-r%e1%84%8b%e1%85%b4-%e1%84%87%e1%85%a5%e1%86%b7%e1%84%91%e1%85%b3-%e1%84%91\/","title":{"rendered":"Ggplot2\ub97c \uc0ac\uc6a9\ud558\uc5ec r\uc5d0\uc11c \uad6c\ud638 \ud50c\ub86f\uc744 \uc27d\uac8c \ub9cc\ub4dc\ub294 \ubc29\ubc95"},"content":{"rendered":"<p><\/p>\n<hr>\n<p><span style=\"color: #000000;\"><strong>\ubc94\ud504 \ucc28\ud2b8\ub294<\/strong> \ubcc0\ud654\ub7c9\ubcf4\ub2e4\ub294 \uadf8\ub8f9\uc758 \uc21c\uc11c\ub97c \uac15\uc870\ud558\uae30 \uc704\ud574 \uc808\ub300\uac12 \ub300\uc2e0 \uc2dc\uac04\uc5d0 \ub530\ub978 \ub2e4\uc591\ud55c \uadf8\ub8f9\uc758 \uc21c\uc704\ub97c \ubcf4\uc5ec\uc8fc\ub294 \ucc28\ud2b8\uc758 \uc77c\uc885\uc774\ub2e4.<\/span><\/p>\n<p> <span style=\"color: #000000;\">\uc774 \ud29c\ud1a0\ub9ac\uc5bc\uc5d0\uc11c\ub294 ggplot2\ub97c \uc0ac\uc6a9\ud558\uc5ec R\uc5d0\uc11c \ubc94\ud504 \ud50c\ub86f\uc744 \uc27d\uac8c \uc0dd\uc131\ud558\ub294 \ubc29\ubc95\uc744 \uc124\uba85\ud569\ub2c8\ub2e4.<\/span><\/p>\n<h2> <strong><span style=\"color: #000000;\">\uc608: \ub9b4\ub9ac\ud504 \uadf8\ub798\ud53d \ub9cc\ub4e4\uae30<\/span><\/strong><\/h2>\n<p> <span style=\"color: #000000;\">R\uc5d0\uc11c \ubc94\ud504 \ucc28\ud2b8\ub97c \ub9cc\ub4e4\ub824\uba74 \uba3c\uc800 <strong>dplyr<\/strong> \ubc0f <strong>ggplot2<\/strong> \ub77c\ub294 \ub450 \uac1c\uc758 \ud328\ud0a4\uc9c0\ub97c \ub85c\ub4dc\ud574\uc57c \ud569\ub2c8\ub2e4.<\/span><\/p>\n<pre style=\"background-color: #e5e5e5; font-size: 15px;\"> <strong>library(ggplot2) <span style=\"color: #008080;\">#for creating bump chart<\/span>\nlibrary(dplyr) <span style=\"color: #008080;\">#for manipulating data<\/span><\/strong><\/pre>\n<p> <span style=\"color: #000000;\">\ub2e4\uc74c\uc73c\ub85c \uc791\uc5c5\ud560 \uba87 \uac00\uc9c0 \ub370\uc774\ud130\ub97c \ub9cc\ub4ed\ub2c8\ub2e4.<\/span><\/p>\n<pre style=\"background-color: #e5e5e5; font-size: 15px;\"> <strong><span style=\"color: #008080;\">#set the seed to make this example reproducible<\/span>\nset.seed(10)\n\ndata &lt;- data.frame(team = rep(LETTERS[1:5], each = 10),\n                   random_num = runif(50),\n                   day = rep(1:10, 5))\n\ndata &lt;- data %&gt;%\n  group_by(day) %&gt;%\n  arrange(day, desc(random_num), team) %&gt;% \n  mutate(rank = row_number()) %&gt;%\n  A group()\n\nhead(data)\n\n# team random_num day rank          \n#1 C 0.865 1 1\n#2 B 0.652 1 2\n#3 D 0.536 1 3\n#4 A 0.507 1 4\n#5 E 0.275 1 5\n#6 C 0.615 2 1<\/strong><\/pre>\n<p> <span style=\"color: #000000;\">\uc774 \ub370\uc774\ud130\ubca0\uc774\uc2a4\ub294 \ub2e8\uc21c\ud788 10\uc77c \ub3d9\uc548 5\uac1c \ud300\uc758 &#8220;\uc21c\uc704&#8221;\ub97c \ud45c\uc2dc\ud569\ub2c8\ub2e4.<\/span><\/p>\n<p> <span style=\"color: #000000;\">ggplot2\ub97c \uc0ac\uc6a9\ud558\uc5ec \uc774 \uae30\uac04 \ub3d9\uc548 \ub9e4\uc77c \uac01 \ud300\uc758 \uc21c\uc704\ub97c \uc2dc\uac01\ud654\ud558\ub294 \uc9c4\ud589 \ucc28\ud2b8\ub97c \ub9cc\ub4e4 \uc218 \uc788\uc2b5\ub2c8\ub2e4.<\/span><\/p>\n<pre style=\"background-color: #e5e5e5; font-size: 15px;\"> <strong>ggplot(data, aes(x = day, y = rank, group = team)) +\n  geom_line(aes(color = team, alpha = 1), size = 2) +\n  geom_point(aes(color = team, alpha = 1), size = 4) +\n  scale_y_reverse(breaks = 1:nrow(data))<\/strong><\/pre>\n<p> <span style=\"color: #000000;\">\uc774 \ubc94\ud504 \ucc28\ud2b8\ub294 \uc6d0\ud558\ub294 \ud615\uc2dd\uc73c\ub85c \ub370\uc774\ud130\ub97c \ud45c\uc2dc\ud558\uc9c0\ub9cc \uaf64 \ubcf4\uae30 \ud749\ud569\ub2c8\ub2e4. \uba87 \uac00\uc9c0 \ubbf8\ud559\uc801 \ubcc0\ud654\ub97c \ud1b5\ud574 \uc774 \uadf8\ub9bc\uc744 \ud6e8\uc52c \ub354 \uc88b\uac8c \ub9cc\ub4e4 \uc218 \uc788\uc2b5\ub2c8\ub2e4.<\/span><\/p>\n<h2> <strong><span style=\"color: #000000;\">\ubc94\ud504 \uadf8\ub798\ud53d \uc2a4\ud0c0\uc77c \uc9c0\uc815<\/span><\/strong><\/h2>\n<p> <span style=\"color: #000000;\">\ucc28\ud2b8\uc758 \ubaa8\uc591\uc744 \uac1c\uc120\ud558\uae30 \uc704\ud574 <a href=\"https:\/\/dominikkoch.github.io\/Bump-Chart\/\" target=\"_blank\" rel=\"noopener\">Dominik Koch<\/a> \uac00 \ub9cc\ub4e0 \ub2e4\uc74c \ud14c\ub9c8\ub97c \uc0ac\uc6a9\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4.<\/span><\/p>\n<pre style=\"background-color: #e5e5e5; font-size: 15px;\"> <strong>my_theme &lt;- function() {\n\n  # Colors\n  color.background = \"white\"\n  color.text = \"#22211d\"\n\n  # Begin construction of chart\n  theme_bw(base_size=15) +\n\n    # Format background colors\n    theme(panel.background = element_rect(fill=color.background,\n                                          color=color.background)) +\n    theme(plot.background = element_rect(fill=color.background,\n                                          color=color.background)) +\n    theme(panel.border = element_rect(color=color.background)) +\n    theme(strip.background = element_rect(fill=color.background,\n                                          color=color.background)) +\n\n    # Format the grid\n    theme(panel.grid.major.y = element_blank()) +\n    theme(panel.grid.minor.y = element_blank()) +\n    theme(axis.ticks = element_blank()) +\n\n    # Format the legend\n    theme(legend.position = \"none\") +\n\n    # Format title and axis labels\n    theme(plot.title = element_text(color=color.text, size=20, face = \"bold\")) +\n    theme(axis.title.x = element_text(size=14, color=\"black\", face = \"bold\")) +\n    theme(axis.title.y = element_text(size=14, color=\"black\", face = \"bold\",\n                                          vjust=1.25)) +\n    theme(axis.text.x = element_text(size=10, vjust=0.5, hjust=0.5,\n                                          color = color.text)) +\n    theme(axis.text.y = element_text(size=10, color = color.text)) +\n    theme(strip.text = element_text(face = \"bold\")) +\n\n    # Plot margins\n    theme(plot.margin = unit(c(0.35, 0.2, 0.3, 0.35), \"cm\"))\n}<\/strong><\/pre>\n<p> <span style=\"color: #000000;\">\ubc94\ud504 \ucc28\ud2b8\ub97c \ub2e4\uc2dc \ub9cc\ub4e4\uc9c0\ub9cc \uc774\ubc88\uc5d0\ub294 \ubc94\ub840\ub97c \uc81c\uac70\ud558\uace0 \uc77c\ubd80 \ucc28\ud2b8 \ub808\uc774\ube14\uc744 \ucd94\uac00\ud558\uace0 \uc704 \ucf54\ub4dc\uc5d0 \uc815\uc758\ub41c \ud14c\ub9c8\ub97c \uc0ac\uc6a9\ud558\uaca0\uc2b5\ub2c8\ub2e4.<\/span><\/p>\n<pre style=\"background-color: #e5e5e5; font-size: 15px;\"> <strong>ggplot(data, aes(x = as.factor(day), y = rank, group = team)) +\n  geom_line(aes(color = team, alpha = 1), size = 2) +\n  geom_point(aes(color = team, alpha = 1), size = 4) +\n  geom_point(color = \"#FFFFFF\", size = 1) +\n  scale_y_reverse(breaks = 1:nrow(data)) + \n  scale_x_discrete(breaks = 1:10) +\n  theme(legend.position = 'none') +\n  geom_text(data = data %&gt;% filter(day == \"1\"),\n            aes(label = team, x = 0.5), hjust = .5,\n            fontface = \"bold\", color = \"#888888\", size = 4) +\n  geom_text(data = data %&gt;% filter(day == \"10\"),\n            aes(label = team, x = 10.5), hjust = 0.5,\n            fontface = \"bold\", color = \"#888888\", size = 4) +\n  labs(x = 'Day', y = 'Rank', title = 'Team Ranking by Day') +\n  my_theme()<\/strong><\/pre>\n<p> <span style=\"color: #000000;\"><strong>scale_color_manual()<\/strong> \uc778\uc218\ub97c \ucd94\uac00\ud558\uc5ec \ud589 \uc911 \ud558\ub098\ub97c \uc27d\uac8c \uac15\uc870 \ud45c\uc2dc\ud560 \uc218\ub3c4 \uc788\uc2b5\ub2c8\ub2e4. \uc608\ub97c \ub4e4\uc5b4 \ub2e4\uc74c \ucf54\ub4dc\uc5d0\uc11c\ub294 A \ud300\uc758 \ub77c\uc778\uc744 \ubcf4\ub77c\uc0c9\uc73c\ub85c \ub9cc\ub4e4\uace0 \ub2e4\ub978 \ubaa8\ub4e0 \ub77c\uc778\uc744 \ud68c\uc0c9\uc73c\ub85c \ub9cc\ub4ed\ub2c8\ub2e4.<\/span><\/p>\n<pre style=\"background-color: #e5e5e5; font-size: 15px;\"> <strong>ggplot(data, aes(x = as.factor(day), y = rank, group = team)) +\n  geom_line(aes(color = team, alpha = 1), size = 2) +\n  geom_point(aes(color = team, alpha = 1), size = 4) +\n  geom_point(color = \"#FFFFFF\", size = 1) +\n  scale_y_reverse(breaks = 1:nrow(data)) + \n  scale_x_discrete(breaks = 1:10) +\n  theme(legend.position = 'none') +\n  geom_text(data = data %&gt;% filter(day == \"1\"),\n            aes(label = team, x = 0.5), hjust = .5,\n            fontface = \"bold\", color = \"#888888\", size = 4) +\n  geom_text(data = data %&gt;% filter(day == \"10\"),\n            aes(label = team, x = 10.5), hjust = 0.5,\n            fontface = \"bold\", color = \"#888888\", size = 4) +\n  labs(x = 'Day', y = 'Rank', title = 'Team Ranking by Day') +\n  my_theme() <span style=\"color: #800080;\">+\n  scale_color_manual(values = c('purple', 'grey', 'grey', 'grey', 'grey'))<\/span><\/strong><\/pre>\n<p> <span style=\"color: #000000;\">\uc6d0\ud558\ub294 \uacbd\uc6b0 \uc5ec\ub7ec \uc904\uc744 \uac15\uc870 \ud45c\uc2dc\ud560 \uc218\ub3c4 \uc788\uc2b5\ub2c8\ub2e4.<\/span><\/p>\n<pre style=\"background-color: #e5e5e5; font-size: 15px;\"> <strong>ggplot(data, aes(x = as.factor(day), y = rank, group = team)) +\n  geom_line(aes(color = team, alpha = 1), size = 2) +\n  geom_point(aes(color = team, alpha = 1), size = 4) +\n  geom_point(color = \"#FFFFFF\", size = 1) +\n  scale_y_reverse(breaks = 1:nrow(data)) + \n  scale_x_discrete(breaks = 1:10) +\n  theme(legend.position = 'none') +\n  geom_text(data = data %&gt;% filter(day == \"1\"),\n            aes(label = team, x = 0.5), hjust = .5,\n            fontface = \"bold\", color = \"#888888\", size = 4) +\n  geom_text(data = data %&gt;% filter(day == \"10\"),\n            aes(label = team, x = 10.5), hjust = 0.5,\n            fontface = \"bold\", color = \"#888888\", size = 4) +\n  labs(x = 'Day', y = 'Rank', title = 'Team Ranking by Day') +\n  my_theme() <span style=\"color: #800080;\">+\n  scale_color_manual(values = c('purple', 'steelblue', 'grey', 'grey', 'grey'))<\/span><\/strong><\/pre>\n","protected":false},"excerpt":{"rendered":"<p>\ubc94\ud504 \ucc28\ud2b8\ub294 \ubcc0\ud654\ub7c9\ubcf4\ub2e4\ub294 \uadf8\ub8f9\uc758 \uc21c\uc11c\ub97c \uac15\uc870\ud558\uae30 \uc704\ud574 \uc808\ub300\uac12 \ub300\uc2e0 \uc2dc\uac04\uc5d0 \ub530\ub978 \ub2e4\uc591\ud55c \uadf8\ub8f9\uc758 \uc21c\uc704\ub97c \ubcf4\uc5ec\uc8fc\ub294 \ucc28\ud2b8\uc758 \uc77c\uc885\uc774\ub2e4. \uc774 \ud29c\ud1a0\ub9ac\uc5bc\uc5d0\uc11c\ub294 ggplot2\ub97c \uc0ac\uc6a9\ud558\uc5ec R\uc5d0\uc11c \ubc94\ud504 \ud50c\ub86f\uc744 \uc27d\uac8c \uc0dd\uc131\ud558\ub294 \ubc29\ubc95\uc744 \uc124\uba85\ud569\ub2c8\ub2e4. \uc608: \ub9b4\ub9ac\ud504 \uadf8\ub798\ud53d \ub9cc\ub4e4\uae30 R\uc5d0\uc11c \ubc94\ud504 \ucc28\ud2b8\ub97c \ub9cc\ub4e4\ub824\uba74 \uba3c\uc800 dplyr \ubc0f ggplot2 \ub77c\ub294 \ub450 \uac1c\uc758 \ud328\ud0a4\uc9c0\ub97c \ub85c\ub4dc\ud574\uc57c \ud569\ub2c8\ub2e4. library(ggplot2) #for creating bump chart library(dplyr) #for manipulating data [&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-472","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>ggplot2\ub97c \uc0ac\uc6a9\ud558\uc5ec R\uc5d0\uc11c \ubc94\ud504 \ucc28\ud2b8\ub97c \uc27d\uac8c \ub9cc\ub4dc\ub294 \ubc29\ubc95 - Statorials<\/title>\n<meta name=\"description\" content=\"\uc774 \ud29c\ud1a0\ub9ac\uc5bc\uc5d0\uc11c\ub294 ggplot2\ub97c \uc0ac\uc6a9\ud558\uc5ec R\uc5d0\uc11c \ubc94\ud504 \ud50c\ub86f\uc744 \uc27d\uac8c \uc0dd\uc131\ud558\ub294 \ubc29\ubc95\uc744 \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\/ggplot2\u1105\u1173\u11af-\u1109\u1161\u110b\u116d\u11bc\u1112\u1161\u110b\u1167-r\u110b\u1174-\u1107\u1165\u11b7\u1111\u1173-\u1111\/\" \/>\n<meta property=\"og:locale\" content=\"ko_KR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"ggplot2\ub97c \uc0ac\uc6a9\ud558\uc5ec R\uc5d0\uc11c \ubc94\ud504 \ucc28\ud2b8\ub97c \uc27d\uac8c \ub9cc\ub4dc\ub294 \ubc29\ubc95 - Statorials\" \/>\n<meta property=\"og:description\" content=\"\uc774 \ud29c\ud1a0\ub9ac\uc5bc\uc5d0\uc11c\ub294 ggplot2\ub97c \uc0ac\uc6a9\ud558\uc5ec R\uc5d0\uc11c \ubc94\ud504 \ud50c\ub86f\uc744 \uc27d\uac8c \uc0dd\uc131\ud558\ub294 \ubc29\ubc95\uc744 \uc124\uba85\ud569\ub2c8\ub2e4.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/statorials.org\/ko\/ggplot2\u1105\u1173\u11af-\u1109\u1161\u110b\u116d\u11bc\u1112\u1161\u110b\u1167-r\u110b\u1174-\u1107\u1165\u11b7\u1111\u1173-\u1111\/\" \/>\n<meta property=\"og:site_name\" content=\"Statorials\" \/>\n<meta property=\"article:published_time\" content=\"2023-07-29T19:13: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=\"3\ubd84\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/statorials.org\/ko\/ggplot2%e1%84%85%e1%85%b3%e1%86%af-%e1%84%89%e1%85%a1%e1%84%8b%e1%85%ad%e1%86%bc%e1%84%92%e1%85%a1%e1%84%8b%e1%85%a7-r%e1%84%8b%e1%85%b4-%e1%84%87%e1%85%a5%e1%86%b7%e1%84%91%e1%85%b3-%e1%84%91\/\",\"url\":\"https:\/\/statorials.org\/ko\/ggplot2%e1%84%85%e1%85%b3%e1%86%af-%e1%84%89%e1%85%a1%e1%84%8b%e1%85%ad%e1%86%bc%e1%84%92%e1%85%a1%e1%84%8b%e1%85%a7-r%e1%84%8b%e1%85%b4-%e1%84%87%e1%85%a5%e1%86%b7%e1%84%91%e1%85%b3-%e1%84%91\/\",\"name\":\"ggplot2\ub97c \uc0ac\uc6a9\ud558\uc5ec R\uc5d0\uc11c \ubc94\ud504 \ucc28\ud2b8\ub97c \uc27d\uac8c \ub9cc\ub4dc\ub294 \ubc29\ubc95 - Statorials\",\"isPartOf\":{\"@id\":\"https:\/\/statorials.org\/ko\/#website\"},\"datePublished\":\"2023-07-29T19:13:06+00:00\",\"dateModified\":\"2023-07-29T19:13:06+00:00\",\"author\":{\"@id\":\"https:\/\/statorials.org\/ko\/#\/schema\/person\/600556789b7d79cbaa9d9f0c721b74f4\"},\"description\":\"\uc774 \ud29c\ud1a0\ub9ac\uc5bc\uc5d0\uc11c\ub294 ggplot2\ub97c \uc0ac\uc6a9\ud558\uc5ec R\uc5d0\uc11c \ubc94\ud504 \ud50c\ub86f\uc744 \uc27d\uac8c \uc0dd\uc131\ud558\ub294 \ubc29\ubc95\uc744 \uc124\uba85\ud569\ub2c8\ub2e4.\",\"breadcrumb\":{\"@id\":\"https:\/\/statorials.org\/ko\/ggplot2%e1%84%85%e1%85%b3%e1%86%af-%e1%84%89%e1%85%a1%e1%84%8b%e1%85%ad%e1%86%bc%e1%84%92%e1%85%a1%e1%84%8b%e1%85%a7-r%e1%84%8b%e1%85%b4-%e1%84%87%e1%85%a5%e1%86%b7%e1%84%91%e1%85%b3-%e1%84%91\/#breadcrumb\"},\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/statorials.org\/ko\/ggplot2%e1%84%85%e1%85%b3%e1%86%af-%e1%84%89%e1%85%a1%e1%84%8b%e1%85%ad%e1%86%bc%e1%84%92%e1%85%a1%e1%84%8b%e1%85%a7-r%e1%84%8b%e1%85%b4-%e1%84%87%e1%85%a5%e1%86%b7%e1%84%91%e1%85%b3-%e1%84%91\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/statorials.org\/ko\/ggplot2%e1%84%85%e1%85%b3%e1%86%af-%e1%84%89%e1%85%a1%e1%84%8b%e1%85%ad%e1%86%bc%e1%84%92%e1%85%a1%e1%84%8b%e1%85%a7-r%e1%84%8b%e1%85%b4-%e1%84%87%e1%85%a5%e1%86%b7%e1%84%91%e1%85%b3-%e1%84%91\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\uc9d1\",\"item\":\"https:\/\/statorials.org\/ko\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Ggplot2\ub97c \uc0ac\uc6a9\ud558\uc5ec r\uc5d0\uc11c \uad6c\ud638 \ud50c\ub86f\uc744 \uc27d\uac8c \ub9cc\ub4dc\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":"ggplot2\ub97c \uc0ac\uc6a9\ud558\uc5ec R\uc5d0\uc11c \ubc94\ud504 \ucc28\ud2b8\ub97c \uc27d\uac8c \ub9cc\ub4dc\ub294 \ubc29\ubc95 - Statorials","description":"\uc774 \ud29c\ud1a0\ub9ac\uc5bc\uc5d0\uc11c\ub294 ggplot2\ub97c \uc0ac\uc6a9\ud558\uc5ec R\uc5d0\uc11c \ubc94\ud504 \ud50c\ub86f\uc744 \uc27d\uac8c \uc0dd\uc131\ud558\ub294 \ubc29\ubc95\uc744 \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\/ggplot2\u1105\u1173\u11af-\u1109\u1161\u110b\u116d\u11bc\u1112\u1161\u110b\u1167-r\u110b\u1174-\u1107\u1165\u11b7\u1111\u1173-\u1111\/","og_locale":"ko_KR","og_type":"article","og_title":"ggplot2\ub97c \uc0ac\uc6a9\ud558\uc5ec R\uc5d0\uc11c \ubc94\ud504 \ucc28\ud2b8\ub97c \uc27d\uac8c \ub9cc\ub4dc\ub294 \ubc29\ubc95 - Statorials","og_description":"\uc774 \ud29c\ud1a0\ub9ac\uc5bc\uc5d0\uc11c\ub294 ggplot2\ub97c \uc0ac\uc6a9\ud558\uc5ec R\uc5d0\uc11c \ubc94\ud504 \ud50c\ub86f\uc744 \uc27d\uac8c \uc0dd\uc131\ud558\ub294 \ubc29\ubc95\uc744 \uc124\uba85\ud569\ub2c8\ub2e4.","og_url":"https:\/\/statorials.org\/ko\/ggplot2\u1105\u1173\u11af-\u1109\u1161\u110b\u116d\u11bc\u1112\u1161\u110b\u1167-r\u110b\u1174-\u1107\u1165\u11b7\u1111\u1173-\u1111\/","og_site_name":"Statorials","article_published_time":"2023-07-29T19:13: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":"3\ubd84"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/statorials.org\/ko\/ggplot2%e1%84%85%e1%85%b3%e1%86%af-%e1%84%89%e1%85%a1%e1%84%8b%e1%85%ad%e1%86%bc%e1%84%92%e1%85%a1%e1%84%8b%e1%85%a7-r%e1%84%8b%e1%85%b4-%e1%84%87%e1%85%a5%e1%86%b7%e1%84%91%e1%85%b3-%e1%84%91\/","url":"https:\/\/statorials.org\/ko\/ggplot2%e1%84%85%e1%85%b3%e1%86%af-%e1%84%89%e1%85%a1%e1%84%8b%e1%85%ad%e1%86%bc%e1%84%92%e1%85%a1%e1%84%8b%e1%85%a7-r%e1%84%8b%e1%85%b4-%e1%84%87%e1%85%a5%e1%86%b7%e1%84%91%e1%85%b3-%e1%84%91\/","name":"ggplot2\ub97c \uc0ac\uc6a9\ud558\uc5ec R\uc5d0\uc11c \ubc94\ud504 \ucc28\ud2b8\ub97c \uc27d\uac8c \ub9cc\ub4dc\ub294 \ubc29\ubc95 - Statorials","isPartOf":{"@id":"https:\/\/statorials.org\/ko\/#website"},"datePublished":"2023-07-29T19:13:06+00:00","dateModified":"2023-07-29T19:13:06+00:00","author":{"@id":"https:\/\/statorials.org\/ko\/#\/schema\/person\/600556789b7d79cbaa9d9f0c721b74f4"},"description":"\uc774 \ud29c\ud1a0\ub9ac\uc5bc\uc5d0\uc11c\ub294 ggplot2\ub97c \uc0ac\uc6a9\ud558\uc5ec R\uc5d0\uc11c \ubc94\ud504 \ud50c\ub86f\uc744 \uc27d\uac8c \uc0dd\uc131\ud558\ub294 \ubc29\ubc95\uc744 \uc124\uba85\ud569\ub2c8\ub2e4.","breadcrumb":{"@id":"https:\/\/statorials.org\/ko\/ggplot2%e1%84%85%e1%85%b3%e1%86%af-%e1%84%89%e1%85%a1%e1%84%8b%e1%85%ad%e1%86%bc%e1%84%92%e1%85%a1%e1%84%8b%e1%85%a7-r%e1%84%8b%e1%85%b4-%e1%84%87%e1%85%a5%e1%86%b7%e1%84%91%e1%85%b3-%e1%84%91\/#breadcrumb"},"inLanguage":"ko-KR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/statorials.org\/ko\/ggplot2%e1%84%85%e1%85%b3%e1%86%af-%e1%84%89%e1%85%a1%e1%84%8b%e1%85%ad%e1%86%bc%e1%84%92%e1%85%a1%e1%84%8b%e1%85%a7-r%e1%84%8b%e1%85%b4-%e1%84%87%e1%85%a5%e1%86%b7%e1%84%91%e1%85%b3-%e1%84%91\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/statorials.org\/ko\/ggplot2%e1%84%85%e1%85%b3%e1%86%af-%e1%84%89%e1%85%a1%e1%84%8b%e1%85%ad%e1%86%bc%e1%84%92%e1%85%a1%e1%84%8b%e1%85%a7-r%e1%84%8b%e1%85%b4-%e1%84%87%e1%85%a5%e1%86%b7%e1%84%91%e1%85%b3-%e1%84%91\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\uc9d1","item":"https:\/\/statorials.org\/ko\/"},{"@type":"ListItem","position":2,"name":"Ggplot2\ub97c \uc0ac\uc6a9\ud558\uc5ec r\uc5d0\uc11c \uad6c\ud638 \ud50c\ub86f\uc744 \uc27d\uac8c \ub9cc\ub4dc\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\/472","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=472"}],"version-history":[{"count":0,"href":"https:\/\/statorials.org\/ko\/wp-json\/wp\/v2\/posts\/472\/revisions"}],"wp:attachment":[{"href":"https:\/\/statorials.org\/ko\/wp-json\/wp\/v2\/media?parent=472"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/statorials.org\/ko\/wp-json\/wp\/v2\/categories?post=472"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/statorials.org\/ko\/wp-json\/wp\/v2\/tags?post=472"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}