{"id":503,"date":"2023-07-29T16:40:17","date_gmt":"2023-07-29T16:40:17","guid":{"rendered":"https:\/\/statorials.org\/ko\/%e1%84%8e%e1%85%ac%e1%84%80%e1%85%a9%e1%84%8b%e1%85%b4-ggplot2-%e1%84%90%e1%85%a6%e1%84%86%e1%85%a1\/"},"modified":"2023-07-29T16:40:17","modified_gmt":"2023-07-29T16:40:17","slug":"%e1%84%8e%e1%85%ac%e1%84%80%e1%85%a9%e1%84%8b%e1%85%b4-ggplot2-%e1%84%90%e1%85%a6%e1%84%86%e1%85%a1","status":"publish","type":"post","link":"https:\/\/statorials.org\/ko\/%e1%84%8e%e1%85%ac%e1%84%80%e1%85%a9%e1%84%8b%e1%85%b4-ggplot2-%e1%84%90%e1%85%a6%e1%84%86%e1%85%a1\/","title":{"rendered":"\ucd5c\uace0\uc758 ggplot2 \ud14c\ub9c8\uc5d0 \ub300\ud55c \uc644\ubcbd\ud55c \uac00\uc774\ub4dc"},"content":{"rendered":"<p><\/p>\n<hr>\n<p><span style=\"color: #000000;\">\uc774 \ud29c\ud1a0\ub9ac\uc5bc\uc740 \ub2e4\uc74c\uc744 \ud3ec\ud568\ud558\uc5ec \ucd5c\uace0\uc758 ggplot2 \ud14c\ub9c8\uc5d0 \ub300\ud55c \uc644\uc804\ud55c \uac00\uc774\ub4dc\ub97c \uc81c\uacf5\ud569\ub2c8\ub2e4.<\/span><\/p>\n<ul>\n<li> <span style=\"color: #000000;\">\ub0b4\uc7a5\ub41c ggplot2 \ud14c\ub9c8\ub97c \uc0ac\uc6a9\ud558\uc5ec \ud50c\ub86f\uc758 \ubaa8\uc591\uc744 \ubcc0\uacbd\ud558\ub294 \ubc29\ubc95.<\/span><\/li>\n<li> <span style=\"color: #000000;\"><em>ggthemes<\/em> \ub77c\uc774\ube0c\ub7ec\ub9ac\uc5d0\uc11c \uc0ac\uc804 \uc815\uc758\ub41c \ud14c\ub9c8\ub97c \uc0ac\uc6a9\ud558\uc5ec \ud50c\ub86f\uc758 \ubaa8\uc591\uc744 \ubcc0\uacbd\ud558\ub294 \ubc29\ubc95.<\/span><\/li>\n<li> <span style=\"color: #000000;\">\uacbd\ub85c \ud328\ub110 \ubc30\uacbd \ubc0f \uaca9\uc790\uc120\uc744 \ud3ec\ud568\ud558\uc5ec \ud14c\ub9c8\uc758 \ud2b9\uc815 \uad6c\uc131 \uc694\uc18c\ub97c \ud3b8\uc9d1\ud558\ub294 \ubc29\ubc95.<\/span><\/li>\n<\/ul>\n<h2> <span style=\"color: #000000;\"><strong>\ub0b4\uc7a5\ub41c ggplot2 \ud14c\ub9c8\ub97c \uc0ac\uc6a9\ud558\uc5ec \ud50c\ub86f \ubaa8\uc591\uc744 \ubcc0\uacbd\ud558\ub294 \ubc29\ubc95<\/strong><\/span><\/h2>\n<p> <span style=\"color: #000000;\">\ub2e4\uc74c \uac01 \uc608\uc5d0\uc11c\ub294 \ub0b4\uc7a5\ub41c R \ub370\uc774\ud130 \uc138\ud2b8\uc758 \ubd93\uaf43\uc744 \uc0ac\uc6a9\ud569\ub2c8\ub2e4.<\/span><\/p>\n<pre style=\"background-color: #e5e5e5; font-size: 15px;\"> <strong><span style=\"color: #008080;\">#view first six rows of <em>iris<\/em> dataset<\/span>\nhead(iris)\n\n  Sepal.Length Sepal.Width Petal.Length Petal.Width Species\n1 5.1 3.5 1.4 0.2 setosa\n2 4.9 3.0 1.4 0.2 setosa\n3 4.7 3.2 1.3 0.2 setosa\n4 4.6 3.1 1.5 0.2 setosa\n5 5.0 3.6 1.4 0.2 setosa\n6 5.4 3.9 1.7 0.4 setosa<\/strong><\/pre>\n<p> <span style=\"color: #000000;\">\uba3c\uc800 <em>ggplot2<\/em> \ub77c\uc774\ube0c\ub7ec\ub9ac\ub97c \ub85c\ub4dc\ud558\uace0 X\ucd95\uc5d0 <em>Sepal.Length\ub97c<\/em> \ud45c\uc2dc <em>\ud558\uace0<\/em><\/span> <span style=\"color: #000000;\">\uc885\uc5d0 \ub530\ub77c \uc0c9\uc0c1\uc774 \uc9c0\uc815\ub41c Sepal.Width\ub97c y\ucd95\uc5d0 \ud45c\uc2dc\ud558\ub294 \uc0b0\uc810\ub3c4\ub97c \ub9cc\ub4ed\ub2c8\ub2e4.<\/span><\/p>\n<pre style=\"background-color: #e5e5e5; font-size: 15px;\"> <strong><span style=\"color: #008080;\">#load <em>ggplot2<\/em> library<\/span>\nlibrary(ggplot2)\n\n<span style=\"color: #008080;\">#create scatterplot\n<\/span>ggplot(iris, aes(x = Sepal.Length, y = Sepal.Width, color = Species)) +\n  geom_point()<\/strong><\/pre>\n<p> <span style=\"color: #000000;\">\ub2e4\uc74c\uc73c\ub85c \ub0b4\uc7a5\ub41c \uac01 ggplot2 \ud14c\ub9c8\uac00 \ud50c\ub86f\uc758 \ubaa8\uc591\uc5d0 \uc5b4\ub5a4 \uc601\ud5a5\uc744 \ubbf8\uce58\ub294\uc9c0 \ubcf4\uc5ec \ub4dc\ub9ac\uaca0\uc2b5\ub2c8\ub2e4.<\/span><\/p>\n<h2> <span style=\"color: #000000;\"><strong>\ud68c\uc0c9_\ud14c\ub9c8<\/strong><\/span><\/h2>\n<p> <span style=\"color: #000000;\">\ud68c\uc0c9 \ubc30\uacbd\uacfc \ud770\uc0c9 \uaca9\uc790\uac00 \uc788\ub294 \uae30\ubcf8 \ud14c\ub9c8\uc785\ub2c8\ub2e4.<\/span><\/p>\n<pre style=\"background-color: #e5e5e5; font-size: 15px;\"> <strong>ggplot(iris, aes(x = Sepal.Length, y = Sepal.Width, color = Species)) +\n  geom_point() <span style=\"color: #800080;\">+\n  theme_gray()<\/span><\/strong><\/pre>\n<h2> <span style=\"color: #000000;\"><strong>bw_\ud14c\ub9c8<\/strong><\/span><\/h2>\n<p> <span style=\"color: #000000;\">\ud770\uc0c9 \ubc14\ud0d5\uc5d0 \uac80\uc740\uc0c9 \ud14c\ub9c8\uc785\ub2c8\ub2e4.<\/span><\/p>\n<pre style=\"background-color: #e5e5e5; font-size: 15px;\"> <strong>ggplot(iris, aes(x = Sepal.Length, y = Sepal.Width, color = Species)) +\n  geom_point() <span style=\"color: #800080;\">+\n  theme_bw()<\/span><\/strong><\/pre>\n<h2> <strong><span style=\"color: #000000;\">theme_linedraw<\/span><\/strong><\/h2>\n<p> <span style=\"color: #000000;\">\ud770\uc0c9 \ubc30\uacbd\uc5d0 \uad75\uae30\uac00 \ub2e4\ub978 \uac80\uc740\uc0c9 \uc120\ub9cc \uc788\ub294 \ud14c\ub9c8\uc785\ub2c8\ub2e4.<\/span><\/p>\n<pre style=\"background-color: #e5e5e5; font-size: 15px;\"> <strong>ggplot(iris, aes(x = Sepal.Length, y = Sepal.Width, color = Species)) +\n  geom_point() <span style=\"color: #800080;\">+\n  theme_linedraw()<\/span><\/strong><\/pre>\n<h2><\/h2>\n<h2> <span style=\"color: #000000;\"><strong>\ud14c\ub9c8_\ube5b<\/strong><\/span><\/h2>\n<p> <span style=\"color: #000000;\"><strong>theme_linedraw<\/strong> \uc640 \uc720\uc0ac\ud558\uc9c0\ub9cc \ub370\uc774\ud130\uc5d0 \ub354 \ub9ce\uc740 \uad00\uc2ec\uc744 \ub04c\ub3c4\ub85d \uc124\uacc4\ub41c \ud68c\uc0c9 \uc120\uacfc \ucd95\uc774 \uc788\ub294 \ud14c\ub9c8\uc785\ub2c8\ub2e4.<\/span><\/p>\n<pre style=\"background-color: #e5e5e5; font-size: 15px;\"> <strong>ggplot(iris, aes(x = Sepal.Length, y = Sepal.Width, color = Species)) +\n  geom_point() <span style=\"color: #800080;\">+\n  theme_light()<\/span><\/strong><\/pre>\n<h2><\/h2>\n<h2> <span style=\"color: #000000;\"><strong>dark_theme<\/strong><\/span><\/h2>\n<p> <span style=\"color: #000000;\"><strong>theme_light<\/strong> \uc640 \uc720\uc0ac\ud558\uc9c0\ub9cc \ubc30\uacbd\uc774 \uc5b4\ub450\uc6b4 \ud14c\ub9c8\uc785\ub2c8\ub2e4. \ubbf8\uc138\ud55c \uc0c9\uc0c1\uc758 \uc120\uc744 \ud45c\ud604\ud558\ub294\ub370 \uc720\uc6a9\ud55c \ud14c\ub9c8\uc785\ub2c8\ub2e4.<\/span><\/p>\n<pre style=\"background-color: #e5e5e5; font-size: 15px;\"> <strong>ggplot(iris, aes(x = Sepal.Length, y = Sepal.Width, color = Species)) +\n  geom_point() <span style=\"color: #800080;\">+\n  theme_dark()<\/span><\/strong><\/pre>\n<h2><\/h2>\n<h2> <span style=\"color: #000000;\"><strong>\ucd5c\uc18c \ud14c\ub9c8<\/strong><\/span><\/h2>\n<p> <span style=\"color: #000000;\">\ubc30\uacbd \uc8fc\uc11d\uc774 \uc5c6\ub294 \ud14c\ub9c8\uc785\ub2c8\ub2e4.<\/span><\/p>\n<pre style=\"background-color: #e5e5e5; font-size: 15px;\"> <strong>ggplot(iris, aes(x = Sepal.Length, y = Sepal.Width, color = Species)) +\n  geom_point() <span style=\"color: #800080;\">+\n  theme_minimal()<\/span><\/strong><\/pre>\n<h2><\/h2>\n<h2> <span style=\"color: #000000;\"><strong>classic_theme<\/strong><\/span><\/h2>\n<p> <span style=\"color: #000000;\">\uadf8\ub9ac\ub4dc\uac00 \uc5c6\ub294 \ud14c\ub9c8\uc785\ub2c8\ub2e4.<\/span><\/p>\n<pre style=\"background-color: #e5e5e5; font-size: 15px;\"> <strong>ggplot(iris, aes(x = Sepal.Length, y = Sepal.Width, color = Species)) +\n  geom_point() <span style=\"color: #800080;\">+\n  theme_classic()<\/span><\/strong><\/pre>\n<h2><\/h2>\n<h2> <strong><span style=\"color: #000000;\">theme_void<\/span><\/strong><\/h2>\n<p> <span style=\"color: #000000;\">\uc644\uc804\ud788 \ube44\uc5b4 \uc788\ub294 \ud14c\ub9c8\uc785\ub2c8\ub2e4.<\/span><\/p>\n<pre style=\"background-color: #e5e5e5; font-size: 15px;\"> <strong>ggplot(iris, aes(x = Sepal.Length, y = Sepal.Width, color = Species)) +\n  geom_point() <span style=\"color: #800080;\">+\n  theme_void()<\/span><\/strong><\/pre>\n<h2><\/h2>\n<h2> <strong><span style=\"color: #000000;\">ggthemes \ub77c\uc774\ube0c\ub7ec\ub9ac\uc5d0\uc11c \ubbf8\ub9ac \uc815\uc758\ub41c \ud14c\ub9c8\ub97c \uc0ac\uc6a9\ud558\uc5ec \ud50c\ub86f\uc758 \ubaa8\uc591\uc744 \ubcc0\uacbd\ud558\ub294 \ubc29\ubc95<\/span><\/strong><\/h2>\n<p> <span style=\"color: #000000;\">\ub0b4\uc7a5\ub41c ggplot2 \ud14c\ub9c8\ub97c \uc0ac\uc6a9\ud558\ub294 \uac83 \uc678\uc5d0\ub3c4 ggthemes \ub77c\uc774\ube0c\ub7ec\ub9ac\uc5d0\uc11c \ubbf8\ub9ac \uc815\uc758\ub41c \ud14c\ub9c8\ub97c \uc0ac\uc6a9\ud558\uc5ec \ud50c\ub86f\uc758 \ubbf8\ud559\uc744 \ubcc0\uacbd\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4.<\/span><\/p>\n<p> <span style=\"color: #000000;\">\uba3c\uc800 ggthemes \ub77c\uc774\ube0c\ub7ec\ub9ac\ub97c \ub85c\ub4dc\ud569\ub2c8\ub2e4.<\/span><\/p>\n<pre style=\"background-color: #e5e5e5; font-size: 15px;\"> <strong>library(ggthemes)<\/strong><\/pre>\n<p> <span style=\"color: #000000;\">\uadf8\ub7f0 \ub2e4\uc74c \ubbf8\ub9ac \uc815\uc758\ub41c \ud14c\ub9c8\ub97c \uc0ac\uc6a9\ud558\uc5ec \ud50c\ub86f\uc758 \ubbf8\ud559\uc744 \uc218\uc815\ud558\ub294 \uba87 \uac00\uc9c0 \uc608\ub97c \ubcf4\uc5ec \ub4dc\ub9ac\uaca0\uc2b5\ub2c8\ub2e4.<\/span><\/p>\n<h2> <strong><span style=\"color: #000000;\">theme_wsj<\/span><\/strong><\/h2>\n<p> <span style=\"color: #000000;\">\uc6d4\uc2a4\ud2b8\ub9ac\ud2b8\uc800\ub110\uc758 \uc8fc\uc81c.<\/span><\/p>\n<pre style=\"background-color: #e5e5e5; font-size: 15px;\"> <strong>ggplot(iris, aes(x = Sepal.Length, y = Sepal.Width, color = Species)) +\n  geom_point() <span style=\"color: #800080;\">+\n  theme_wsj()<\/span><\/strong><\/pre>\n<h2> <span style=\"color: #000000;\"><strong>theme_tufte<\/strong><\/span><\/h2>\n<p> <span style=\"color: #000000;\">\ud1b5\uacc4\ud559\uc790\uc778 Edward Tufte\uc758 \uc791\uc5c5\uc5d0\uc11c \uc601\uac10\uc744 \ubc1b\uc740 \ubbf8\ub2c8\uba40\ub9ac\uc2a4\ud2b8 \ud14c\ub9c8\uc785\ub2c8\ub2e4.<\/span><\/p>\n<pre style=\"background-color: #e5e5e5; font-size: 15px;\"> <strong>ggplot(iris, aes(x = Sepal.Length, y = Sepal.Width, color = Species)) +\n  geom_point() <span style=\"color: #800080;\">+\n  theme_tufte()<\/span><\/strong><\/pre>\n<h2><\/h2>\n<h2> <span style=\"color: #000000;\"><strong>Solarized_theme<\/strong><\/span><\/h2>\n<p> <span style=\"color: #000000;\"><a href=\"https:\/\/en.wikipedia.org\/wiki\/Solarized_(color_scheme)\" target=\"_blank\" rel=\"noopener\">Solarized Palette\ub97c<\/a> \uae30\ubc18\uc73c\ub85c \uc0c9\uc0c1\uc744 \uc0ac\uc6a9\ud55c \ud14c\ub9c8\uc785\ub2c8\ub2e4.<\/span><\/p>\n<pre style=\"background-color: #e5e5e5; font-size: 15px;\"> <strong>ggplot(iris, aes(x = Sepal.Length, y = Sepal.Width, color = Species)) +\n  geom_point() <span style=\"color: #800080;\">+\n  theme_solarized()<\/span><\/strong><\/pre>\n<p> <span style=\"color: #000000;\"><strong>light = FALSE<\/strong> \uc778\uc218\ub97c \uc0ac\uc6a9\ud558\uc5ec \ud50c\ub86f\uc5d0\uc11c \uc5b4\ub450\uc6b4 \ubc30\uacbd\uc744 \uc0ac\uc6a9\ud560 \uc218\ub3c4 \uc788\uc2b5\ub2c8\ub2e4.<\/span><\/p>\n<pre style=\"background-color: #e5e5e5; font-size: 15px;\"> <strong>ggplot(iris, aes(x = Sepal.Length, y = Sepal.Width, color = Species)) +\n  geom_point() +\n  theme_solarized( <span style=\"color: #800080;\">light = FALSE<\/span> )<\/strong><\/pre>\n<h2><\/h2>\n<h2> <span style=\"color: #000000;\"><strong>theme_gdocs<\/strong><\/span><\/h2>\n<p> <span style=\"color: #000000;\">Google Docs \ucc28\ud2b8 \uae30\ubcf8\uac12\uc774 \ud3ec\ud568\ub41c \ud14c\ub9c8\uc785\ub2c8\ub2e4.<\/span><\/p>\n<pre style=\"background-color: #e5e5e5; font-size: 15px;\"> <strong>ggplot(iris, aes(x = Sepal.Length, y = Sepal.Width, color = Species)) +\n  geom_point() <span style=\"color: #800080;\">+\n  theme_gdocs()<\/span><\/strong><\/pre>\n<h2><\/h2>\n<h2> <span style=\"color: #000000;\"><strong>theme_fivethirtyeight<\/strong><\/span><\/h2>\n<p><span style=\"color: #000000;\"><a href=\"https:\/\/fivethirtyeight.com\/\" target=\"_blank\" rel=\"noopener\">fivethirtyeight.com<\/a> \uc758 \ud50c\ub86f\uc5d0\uc11c \uc601\uac10\uc744 \ubc1b\uc740 \ud14c\ub9c8\uc785\ub2c8\ub2e4.<\/span><\/p>\n<pre style=\"background-color: #e5e5e5; font-size: 15px;\"> <strong>ggplot(iris, aes(x = Sepal.Length, y = Sepal.Width, color = Species)) +\n  geom_point() <span style=\"color: #800080;\">+\n  theme_fivethirtyeight()<\/span><\/strong><\/pre>\n<h2><\/h2>\n<h2> <span style=\"color: #000000;\"><strong>\ud14c\ub9c8_\uacbd\uc81c\ud559\uc790<\/strong><\/span><\/h2>\n<p> <span style=\"color: #000000;\">The Economist\uc5d0\uc11c \uc601\uac10\uc744 \ubc1b\uc740 \ud14c\ub9c8\uc785\ub2c8\ub2e4.<\/span><\/p>\n<pre style=\"background-color: #e5e5e5; font-size: 15px;\"> <strong>ggplot(iris, aes(x = Sepal.Length, y = Sepal.Width, color = Species)) +\n  geom_point() <span style=\"color: #800080;\">+\n  theme_economist()<\/span><\/strong><\/pre>\n<h2><\/h2>\n<h2> <strong><span style=\"color: #000000;\">\ud50c\ub86f\uc758 \ud2b9\uc815 \uad6c\uc131 \uc694\uc18c\ub97c \ud3b8\uc9d1\ud558\ub294 \ubc29\ubc95<\/span><\/strong><\/h2>\n<p> <span style=\"color: #000000;\"><strong>theme()<\/strong> \ubc0f <strong>element_ect()<\/strong> \ud568\uc218\ub97c \uc0ac\uc6a9\ud558\uc5ec \ud50c\ub86f \ud328\ub110\uc758 \ubc30\uacbd\uc0c9\uc744 \ubcc0\uacbd\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4.<\/span><\/p>\n<pre style=\"background-color: #e5e5e5; font-size: 15px;\"> <strong>theme(panel.background = element_rect(fill, color, size))<\/strong><\/pre>\n<ul>\n<li> <span style=\"color: #000000;\"><strong>\ucc44\uc6b0\uae30:<\/strong> \uc9c1\uc0ac\uac01\ud615\uc758 \ucc44\uc6b0\uae30 \uc0c9\uc0c1<\/span><\/li>\n<li> <span style=\"color: #000000;\"><strong>\uc0c9\uc0c1:<\/strong> \ud14c\ub450\ub9ac \uc0c9\uc0c1<\/span><\/li>\n<li> <span style=\"color: #000000;\"><strong>\ud06c\uae30:<\/strong> \ud14c\ub450\ub9ac \ud06c\uae30<\/span><\/li>\n<\/ul>\n<p> <span style=\"color: #000000;\"><strong>element_line()<\/strong> \ud568\uc218\ub97c \uc0ac\uc6a9\ud558\uc5ec \uadf8\ub9ac\ub4dc\uc758 \ud06c\uae30\uc640 \ubaa8\uc591\uc744 \ubcc0\uacbd\ud560 \uc218\ub3c4 \uc788\uc2b5\ub2c8\ub2e4.<\/span><\/p>\n<pre style=\"background-color: #e5e5e5; font-size: 15px;\"> <strong>theme(panel.grid.major = element_line(color, size, linetype),\n      panel.grid.minor = element_line(color, size, linetype))<\/strong><\/pre>\n<ul>\n<li> <span style=\"color: #000000;\"><strong>\uc0c9\uc0c1:<\/strong> \ud14c\ub450\ub9ac \uc0c9\uc0c1<\/span><\/li>\n<li> <span style=\"color: #000000;\"><strong>\ud06c\uae30:<\/strong> \ud14c\ub450\ub9ac \ud06c\uae30<\/span><\/li>\n<li> <span style=\"color: #000000;\"><strong>linetype:<\/strong> \uc120\uc885\ub958(&#8220;\uacf5\ubc31&#8221;, &#8220;\uc2e4\uc120&#8221;, &#8220;\ub300\uc2dc&#8221;, &#8220;\uc810\uc120&#8221;, &#8220;\uc810 \ub300\uc2dc&#8221;, &#8220;\uae34 \ub300\uc2dc&#8221;, &#8220;\ub300\uc2dc 2\uac1c&#8221;)<\/span><\/li>\n<\/ul>\n<p> <span style=\"color: #000000;\">\ub2e4\uc74c \ucf54\ub4dc\ub294 \ud50c\ub86f \ud328\ub110 \ud14c\ub450\ub9ac\uc640 \ub208\uae08\uc120\uc744 \uc81c\uac70\ud558\ub294 \ubc29\ubc95\uc744 \ubcf4\uc5ec\uc90d\ub2c8\ub2e4.<\/span><\/p>\n<pre style=\"background-color: #e5e5e5; font-size: 15px;\"> <strong>ggplot(iris, aes(x = Sepal.Length, y = Sepal.Width, color = Species)) +\n  geom_point() <span style=\"color: #800080;\">+\n  theme(panel.border = element_blank(),\n  panel.grid.major = element_blank(),\n  panel.grid.minor = element_blank())<\/span><\/strong><\/pre>\n<p> <span style=\"color: #000000;\">\ub2e4\uc74c \ucf54\ub4dc\ub294 \ud50c\ub86f \ud328\ub110 \ubc30\uacbd\uacfc \ub208\uae08\uc120\uc744 \ubcc0\uacbd\ud558\ub294 \ubc29\ubc95\uc744 \ubcf4\uc5ec\uc90d\ub2c8\ub2e4.<\/span><\/p>\n<pre style=\"background-color: #e5e5e5; font-size: 15px;\"> <strong>ggplot(iris, aes(x = Sepal.Length, y = Sepal.Width, color = Species)) +\n  geom_point() +\n  theme(\n    panel.background = element_rect(fill = \"powderblue\",\n    color = \"powderblue\",\n    size = 0.5, linetype = \"solid\"),\n    panel.grid.major = element_line(size = 0.5, linetype = 'solid', color = \"white\"),\n    panel.grid.minor = element_line(size = 0.25, linetype = 'solid', color = \"white\")\n  )<\/strong><\/pre>\n","protected":false},"excerpt":{"rendered":"<p>\uc774 \ud29c\ud1a0\ub9ac\uc5bc\uc740 \ub2e4\uc74c\uc744 \ud3ec\ud568\ud558\uc5ec \ucd5c\uace0\uc758 ggplot2 \ud14c\ub9c8\uc5d0 \ub300\ud55c \uc644\uc804\ud55c \uac00\uc774\ub4dc\ub97c \uc81c\uacf5\ud569\ub2c8\ub2e4. \ub0b4\uc7a5\ub41c ggplot2 \ud14c\ub9c8\ub97c \uc0ac\uc6a9\ud558\uc5ec \ud50c\ub86f\uc758 \ubaa8\uc591\uc744 \ubcc0\uacbd\ud558\ub294 \ubc29\ubc95. ggthemes \ub77c\uc774\ube0c\ub7ec\ub9ac\uc5d0\uc11c \uc0ac\uc804 \uc815\uc758\ub41c \ud14c\ub9c8\ub97c \uc0ac\uc6a9\ud558\uc5ec \ud50c\ub86f\uc758 \ubaa8\uc591\uc744 \ubcc0\uacbd\ud558\ub294 \ubc29\ubc95. \uacbd\ub85c \ud328\ub110 \ubc30\uacbd \ubc0f \uaca9\uc790\uc120\uc744 \ud3ec\ud568\ud558\uc5ec \ud14c\ub9c8\uc758 \ud2b9\uc815 \uad6c\uc131 \uc694\uc18c\ub97c \ud3b8\uc9d1\ud558\ub294 \ubc29\ubc95. \ub0b4\uc7a5\ub41c ggplot2 \ud14c\ub9c8\ub97c \uc0ac\uc6a9\ud558\uc5ec \ud50c\ub86f \ubaa8\uc591\uc744 \ubcc0\uacbd\ud558\ub294 \ubc29\ubc95 \ub2e4\uc74c \uac01 \uc608\uc5d0\uc11c\ub294 \ub0b4\uc7a5\ub41c R \ub370\uc774\ud130 [&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-503","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>\ucd5c\uace0\uc758 ggplot2 \ud14c\ub9c8\uc5d0 \ub300\ud55c \uc644\ubcbd\ud55c \uac00\uc774\ub4dc \u2013 Statorials<\/title>\n<meta name=\"description\" content=\"\ucd5c\uace0\uc758 ggplot2 \ud14c\ub9c8\ub97c \uc0ac\uc6a9\ud558\ub294 \ubc29\ubc95\uc758 \uc608\ub97c \ubcf4\uc5ec\uc8fc\ub294 \ud3ec\uad04\uc801\uc778 \uac00\uc774\ub4dc\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\/\u110e\u116c\u1100\u1169\u110b\u1174-ggplot2-\u1110\u1166\u1106\u1161\/\" \/>\n<meta property=\"og:locale\" content=\"ko_KR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"\ucd5c\uace0\uc758 ggplot2 \ud14c\ub9c8\uc5d0 \ub300\ud55c \uc644\ubcbd\ud55c \uac00\uc774\ub4dc \u2013 Statorials\" \/>\n<meta property=\"og:description\" content=\"\ucd5c\uace0\uc758 ggplot2 \ud14c\ub9c8\ub97c \uc0ac\uc6a9\ud558\ub294 \ubc29\ubc95\uc758 \uc608\ub97c \ubcf4\uc5ec\uc8fc\ub294 \ud3ec\uad04\uc801\uc778 \uac00\uc774\ub4dc\uc785\ub2c8\ub2e4.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/statorials.org\/ko\/\u110e\u116c\u1100\u1169\u110b\u1174-ggplot2-\u1110\u1166\u1106\u1161\/\" \/>\n<meta property=\"og:site_name\" content=\"Statorials\" \/>\n<meta property=\"article:published_time\" content=\"2023-07-29T16:40:17+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=\"2\ubd84\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/statorials.org\/ko\/%e1%84%8e%e1%85%ac%e1%84%80%e1%85%a9%e1%84%8b%e1%85%b4-ggplot2-%e1%84%90%e1%85%a6%e1%84%86%e1%85%a1\/\",\"url\":\"https:\/\/statorials.org\/ko\/%e1%84%8e%e1%85%ac%e1%84%80%e1%85%a9%e1%84%8b%e1%85%b4-ggplot2-%e1%84%90%e1%85%a6%e1%84%86%e1%85%a1\/\",\"name\":\"\ucd5c\uace0\uc758 ggplot2 \ud14c\ub9c8\uc5d0 \ub300\ud55c \uc644\ubcbd\ud55c \uac00\uc774\ub4dc \u2013 Statorials\",\"isPartOf\":{\"@id\":\"https:\/\/statorials.org\/ko\/#website\"},\"datePublished\":\"2023-07-29T16:40:17+00:00\",\"dateModified\":\"2023-07-29T16:40:17+00:00\",\"author\":{\"@id\":\"https:\/\/statorials.org\/ko\/#\/schema\/person\/600556789b7d79cbaa9d9f0c721b74f4\"},\"description\":\"\ucd5c\uace0\uc758 ggplot2 \ud14c\ub9c8\ub97c \uc0ac\uc6a9\ud558\ub294 \ubc29\ubc95\uc758 \uc608\ub97c \ubcf4\uc5ec\uc8fc\ub294 \ud3ec\uad04\uc801\uc778 \uac00\uc774\ub4dc\uc785\ub2c8\ub2e4.\",\"breadcrumb\":{\"@id\":\"https:\/\/statorials.org\/ko\/%e1%84%8e%e1%85%ac%e1%84%80%e1%85%a9%e1%84%8b%e1%85%b4-ggplot2-%e1%84%90%e1%85%a6%e1%84%86%e1%85%a1\/#breadcrumb\"},\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/statorials.org\/ko\/%e1%84%8e%e1%85%ac%e1%84%80%e1%85%a9%e1%84%8b%e1%85%b4-ggplot2-%e1%84%90%e1%85%a6%e1%84%86%e1%85%a1\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/statorials.org\/ko\/%e1%84%8e%e1%85%ac%e1%84%80%e1%85%a9%e1%84%8b%e1%85%b4-ggplot2-%e1%84%90%e1%85%a6%e1%84%86%e1%85%a1\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\uc9d1\",\"item\":\"https:\/\/statorials.org\/ko\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"\ucd5c\uace0\uc758 ggplot2 \ud14c\ub9c8\uc5d0 \ub300\ud55c \uc644\ubcbd\ud55c \uac00\uc774\ub4dc\"}]},{\"@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":"\ucd5c\uace0\uc758 ggplot2 \ud14c\ub9c8\uc5d0 \ub300\ud55c \uc644\ubcbd\ud55c \uac00\uc774\ub4dc \u2013 Statorials","description":"\ucd5c\uace0\uc758 ggplot2 \ud14c\ub9c8\ub97c \uc0ac\uc6a9\ud558\ub294 \ubc29\ubc95\uc758 \uc608\ub97c \ubcf4\uc5ec\uc8fc\ub294 \ud3ec\uad04\uc801\uc778 \uac00\uc774\ub4dc\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\/\u110e\u116c\u1100\u1169\u110b\u1174-ggplot2-\u1110\u1166\u1106\u1161\/","og_locale":"ko_KR","og_type":"article","og_title":"\ucd5c\uace0\uc758 ggplot2 \ud14c\ub9c8\uc5d0 \ub300\ud55c \uc644\ubcbd\ud55c \uac00\uc774\ub4dc \u2013 Statorials","og_description":"\ucd5c\uace0\uc758 ggplot2 \ud14c\ub9c8\ub97c \uc0ac\uc6a9\ud558\ub294 \ubc29\ubc95\uc758 \uc608\ub97c \ubcf4\uc5ec\uc8fc\ub294 \ud3ec\uad04\uc801\uc778 \uac00\uc774\ub4dc\uc785\ub2c8\ub2e4.","og_url":"https:\/\/statorials.org\/ko\/\u110e\u116c\u1100\u1169\u110b\u1174-ggplot2-\u1110\u1166\u1106\u1161\/","og_site_name":"Statorials","article_published_time":"2023-07-29T16:40:17+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":"2\ubd84"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/statorials.org\/ko\/%e1%84%8e%e1%85%ac%e1%84%80%e1%85%a9%e1%84%8b%e1%85%b4-ggplot2-%e1%84%90%e1%85%a6%e1%84%86%e1%85%a1\/","url":"https:\/\/statorials.org\/ko\/%e1%84%8e%e1%85%ac%e1%84%80%e1%85%a9%e1%84%8b%e1%85%b4-ggplot2-%e1%84%90%e1%85%a6%e1%84%86%e1%85%a1\/","name":"\ucd5c\uace0\uc758 ggplot2 \ud14c\ub9c8\uc5d0 \ub300\ud55c \uc644\ubcbd\ud55c \uac00\uc774\ub4dc \u2013 Statorials","isPartOf":{"@id":"https:\/\/statorials.org\/ko\/#website"},"datePublished":"2023-07-29T16:40:17+00:00","dateModified":"2023-07-29T16:40:17+00:00","author":{"@id":"https:\/\/statorials.org\/ko\/#\/schema\/person\/600556789b7d79cbaa9d9f0c721b74f4"},"description":"\ucd5c\uace0\uc758 ggplot2 \ud14c\ub9c8\ub97c \uc0ac\uc6a9\ud558\ub294 \ubc29\ubc95\uc758 \uc608\ub97c \ubcf4\uc5ec\uc8fc\ub294 \ud3ec\uad04\uc801\uc778 \uac00\uc774\ub4dc\uc785\ub2c8\ub2e4.","breadcrumb":{"@id":"https:\/\/statorials.org\/ko\/%e1%84%8e%e1%85%ac%e1%84%80%e1%85%a9%e1%84%8b%e1%85%b4-ggplot2-%e1%84%90%e1%85%a6%e1%84%86%e1%85%a1\/#breadcrumb"},"inLanguage":"ko-KR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/statorials.org\/ko\/%e1%84%8e%e1%85%ac%e1%84%80%e1%85%a9%e1%84%8b%e1%85%b4-ggplot2-%e1%84%90%e1%85%a6%e1%84%86%e1%85%a1\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/statorials.org\/ko\/%e1%84%8e%e1%85%ac%e1%84%80%e1%85%a9%e1%84%8b%e1%85%b4-ggplot2-%e1%84%90%e1%85%a6%e1%84%86%e1%85%a1\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\uc9d1","item":"https:\/\/statorials.org\/ko\/"},{"@type":"ListItem","position":2,"name":"\ucd5c\uace0\uc758 ggplot2 \ud14c\ub9c8\uc5d0 \ub300\ud55c \uc644\ubcbd\ud55c \uac00\uc774\ub4dc"}]},{"@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\/503","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=503"}],"version-history":[{"count":0,"href":"https:\/\/statorials.org\/ko\/wp-json\/wp\/v2\/posts\/503\/revisions"}],"wp:attachment":[{"href":"https:\/\/statorials.org\/ko\/wp-json\/wp\/v2\/media?parent=503"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/statorials.org\/ko\/wp-json\/wp\/v2\/categories?post=503"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/statorials.org\/ko\/wp-json\/wp\/v2\/tags?post=503"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}