{"id":471,"date":"2023-07-29T19:19:54","date_gmt":"2023-07-29T19:19:54","guid":{"rendered":"https:\/\/statorials.org\/ko\/%e1%84%92%e1%85%b5%e1%84%90%e1%85%b3%e1%84%86%e1%85%a2%e1%86%b8-r-ggplot2\/"},"modified":"2023-07-29T19:19:54","modified_gmt":"2023-07-29T19:19:54","slug":"%e1%84%92%e1%85%b5%e1%84%90%e1%85%b3%e1%84%86%e1%85%a2%e1%86%b8-r-ggplot2","status":"publish","type":"post","link":"https:\/\/statorials.org\/ko\/%e1%84%92%e1%85%b5%e1%84%90%e1%85%b3%e1%84%86%e1%85%a2%e1%86%b8-r-ggplot2\/","title":{"rendered":"Ggplot2\ub97c \uc0ac\uc6a9\ud558\uc5ec r\uc5d0\uc11c \ud788\ud2b8 \ub9f5\uc744 \ub9cc\ub4dc\ub294 \ubc29\ubc95"},"content":{"rendered":"<p><\/p>\n<hr>\n<p><span style=\"color: #000000;\">\uc774 \ud29c\ud1a0\ub9ac\uc5bc\uc5d0\uc11c\ub294 ggplot2\ub97c \uc0ac\uc6a9\ud558\uc5ec R\uc5d0\uc11c \ud788\ud2b8 \ub9f5\uc744 \ub9cc\ub4dc\ub294 \ubc29\ubc95\uc744 \uc124\uba85\ud569\ub2c8\ub2e4.<\/span><\/p>\n<h3> <strong><span style=\"color: #000000;\">\uc608: R\uc5d0\uc11c \ud788\ud2b8\ub9f5 \uc0dd\uc131<\/span><\/strong><\/h3>\n<p> <span style=\"color: #000000;\">\ud788\ud2b8\ub9f5\uc744 \uc0dd\uc131\ud558\uae30 \uc704\ud574 \ub0b4\uc7a5\ub41c R \ub370\uc774\ud130\uc138\ud2b8 <strong>mtcars\ub97c<\/strong> \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>mtcars\n<\/em><\/span>head(mtcars)\n\n# mpg cyl disp hp drat wt qsec vs am gear carb\n#Mazda RX4 21.0 6 160 110 3.90 2.620 16.46 0 1 4 4\n#Mazda RX4 Wag 21.0 6 160 110 3.90 2.875 17.02 0 1 4 4\n#Datsun 710 22.8 4 108 93 3.85 2.320 18.61 1 1 4 1\n#Hornet 4 Drive 21.4 6 258 110 3.08 3.215 19.44 1 0 3 1\n#Hornet Sportabout 18.7 8 360 175 3.15 3.440 17.02 0 0 3 2\n#Valiant 18.1 6 225 105 2.76 3.460 20.22 1 0 3 1\n<\/strong><\/pre>\n<p> <span style=\"color: #000000;\">\ud604\uc7ac <strong>mtcars<\/strong> \ub294 \uc640\uc774\ub4dc \ud615\uc2dd\uc774\uc9c0\ub9cc \ud788\ud2b8\ub9f5\uc744 \uc0dd\uc131\ud558\ub824\uba74 \uae34 \ud615\uc2dd\uc73c\ub85c \ud63c\ud569\ud574\uc57c \ud569\ub2c8\ub2e4.<\/span><\/p>\n<pre style=\"background-color: #e5e5e5; font-size: 15px;\"> <strong><span style=\"color: #008080;\">#load <em>reshape2<\/em> package to use melt() function<\/span>\nlibrary(reshape2)\n\n<span style=\"color: #008080;\">#melt mtcars into long format<\/span>\nmelt_mtcars &lt;- melt(mtcars)\n\n<span style=\"color: #008080;\">#add column for car name<\/span>\nmelt_mtcars$car &lt;- rep(row.names(mtcars), 11)\n\n<span style=\"color: #008080;\">#view first six rows of <em>melt_mtcars<\/em><\/span>\nhead(melt_mtcars)\n\n# variable value char\n#1 mpg 21.0 Mazda RX4\n#2 mpg 21.0 Mazda RX4 Wag\n#3 mpg 22.8 Datsun 710\n#4 mpg 21.4 Hornet 4 Drive\n#5 mpg 18.7 Hornet Sportabout\n#6 mpg 18.1 Valiant<\/strong><\/pre>\n<p> <span style=\"color: #000000;\">\ub2e4\uc74c \ucf54\ub4dc\ub97c \uc0ac\uc6a9\ud558\uc5ec ggplot2\uc5d0\uc11c \ud788\ud2b8\ub9f5\uc744 \ub9cc\ub4e4 \uc218 \uc788\uc2b5\ub2c8\ub2e4.<\/span><\/p>\n<pre style=\"background-color: #e5e5e5; font-size: 15px;\"> <strong>library(ggplot2)\n\nggplot(melt_mtcars, aes(variable, char)) +\n  geom_tile(aes(fill = value),<\/strong> <strong>color = \"white\") +\n  scale_fill_gradient(low = \"white\",<\/strong> <strong>high = \"red\")<\/strong><\/pre>\n<p> <span style=\"color: #000000;\">\uc548\ud0c0\uae5d\uac8c\ub3c4 <em>disp<\/em> \uc758 \uac12\uc740 \ub370\uc774\ud130 \ud504\ub808\uc784 \ub0b4 \ub2e4\ub978 \ubaa8\ub4e0 \ubcc0\uc218\uc758 \uac12\ubcf4\ub2e4 \ud6e8\uc52c \ud06c\uae30 \ub54c\ubb38\uc5d0 \ub2e4\ub978 \ubcc0\uc218\uc758 \uc0c9\uc0c1 \ubcc0\ud654\ub97c \ud655\uc778\ud558\uae30 \uc5b4\ub835\uc2b5\ub2c8\ub2e4.<\/span><\/p>\n<p> <span style=\"color: #000000;\">\uc774 \ubb38\uc81c\ub97c \ud574\uacb0\ud558\ub294 \ud55c \uac00\uc9c0 \ubc29\ubc95\uc740 scales() \ud328\ud0a4\uc9c0\uc758 <strong>rescale()<\/strong> \ud568\uc218\uc640 plyr() \ud328\ud0a4\uc9c0\uc758 <strong>ddply()<\/strong> \ud568\uc218\ub97c \uc0ac\uc6a9\ud558\uc5ec \uac01 \ubcc0\uc218\uc758 \uac12\uc744 0\uc5d0\uc11c 1\ub85c \ub2e4\uc2dc \uc870\uc815\ud558\ub294 \uac83\uc785\ub2c8\ub2e4.<\/span><\/p>\n<pre style=\"background-color: #e5e5e5; font-size: 15px;\"> <strong><span style=\"color: #008080;\">#load libraries<\/span>\nlibrary(plyr)\nlibrary(scales)\n\n<span style=\"color: #008080;\">#rescale values for all variables in melted data frame<\/span>\nmelt_mtcars &lt;- ddply(melt_mtcars, .(variable), transform, rescale = rescale(value))\n\n<span style=\"color: #008080;\">#create heatmap using rescaled values<\/span>\nggplot(melt_mtcars, aes(variable, char)) +\n  geom_tile(aes(fill = rescale), color = \"white\") +\n  scale_fill_gradient(low = \"white\", high = \"red\")\n<\/strong><\/pre>\n<p> <span style=\"color: #000000;\">scale_fill_gradient() \uc778\uc218\uc5d0 \uc0ac\uc6a9\ub41c \uc0c9\uc0c1\uc744 \ubcc0\uacbd\ud558\uc5ec \ud788\ud2b8\ub9f5 \uc0c9\uc0c1\uc744 \ubcc0\uacbd\ud560 \uc218\ub3c4 \uc788\uc2b5\ub2c8\ub2e4.<\/span><\/p>\n<pre style=\"background-color: #e5e5e5; font-size: 15px;\"> <strong><span style=\"color: #008080;\">#create heatmap using blue color scale\n<\/span>ggplot(melt_mtcars, aes(variable, char)) +\n  geom_tile(aes(fill = rescale), color = \"white\") +\n  scale_fill_gradient(low = \"white\", high = \"steelblue\")<\/strong><\/pre>\n<p> <span style=\"color: #000000;\">\ud604\uc7ac \ud788\ud2b8\ub9f5\uc740 \uc790\ub3d9\ucc28 \uc774\ub984\ubcc4\ub85c \ubd84\ub958\ub418\uc5b4 \uc788\uc2b5\ub2c8\ub2e4. \ub300\uc2e0 \ub2e4\uc74c \ucf54\ub4dc\ub97c \uc0ac\uc6a9\ud558\uc5ec <em>mpg<\/em> \uc640 \uac19\uc740 \ubcc0\uc218 \uc911 \ud558\ub098\uc758 \uac12\uc5d0 \ub530\ub77c \ud788\ud2b8\ub9f5\uc744 \uc815\ub82c\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4.<\/span><\/p>\n<pre style=\"background-color: #e5e5e5; font-size: 15px;\"> <strong><span style=\"color: #008080;\">#define car name as a new column, then order by <em>mpg<\/em> descending\n<\/span>mtcars$car &lt;- row.names(mtcars)\nmtcars$car &lt;- with(mtcars, reorder(car, mpg))\n\n<span style=\"color: #008080;\">#melt mtcars into long format\n<\/span>melt_mtcars &lt;- melt(mtcars)\n\n<span style=\"color: #008080;\">#rescale values for all variables in melted data frame\n<\/span>melt_mtcars &lt;- ddply(melt_mtcars, .(variable), transform, rescale = rescale(value))\n\n<span style=\"color: #008080;\">#create heatmap using rescaled values\n<\/span>ggplot(melt_mtcars, aes(variable, char)) +\n  geom_tile(aes(fill = rescale), color = \"white\") +\n  scale_fill_gradient(low = \"white\", high = \"steelblue\")<\/strong><\/pre>\n<p> <span style=\"color: #000000;\"><em>mpg \ub97c<\/em> \ub298\ub824 \ud788\ud2b8\ub9f5\uc744 \uc815\ub82c\ud558\ub824\uba74 reorder() \uc778\uc218\uc5d0 <strong>-mpg \ub97c<\/strong> \uc0ac\uc6a9\ud558\uba74 \ub429\ub2c8\ub2e4.<\/span><\/p>\n<pre style=\"background-color: #e5e5e5; font-size: 15px;\"> <strong><span style=\"color: #008080;\">#define car name as a new column, then order by mpg descending\n<\/span>mtcars$car &lt;- row.names(mtcars)\nmtcars$car &lt;- with(mtcars, reorder(car, <span style=\"color: #800080;\">-mpg<\/span> ))\n\n<span style=\"color: #008080;\">#melt mtcars into long format\n<\/span>melt_mtcars &lt;- melt(mtcars)\n\n<span style=\"color: #008080;\">#rescale values for all variables in melted data frame\n<\/span>melt_mtcars &lt;- ddply(melt_mtcars, .(variable), transform, rescale = rescale(value))\n\n<span style=\"color: #008080;\">#create heatmap using rescaled values\n<\/span>ggplot(melt_mtcars, aes(variable, char)) +\n  geom_tile(aes(fill = rescale), color = \"white\") +\n  scale_fill_gradient(low = \"white\", high = \"steelblue\")<\/strong><\/pre>\n<p> <span style=\"color: #000000;\">\ub9c8\uc9c0\ub9c9\uc73c\ub85c labs() \ubc0f theme() \uc778\uc218\ub97c \uc0ac\uc6a9\ud558\uc5ec \ud45c\uc2dc\ub418\ub294 \ubc29\uc2dd\uc774 \ub9c8\uc74c\uc5d0 \ub4e4\uc9c0 \uc54a\uc73c\uba74 x \ubc0f y \ucd95 \ub808\uc774\ube14\uacfc \ubc94\ub840\ub97c \uc81c\uac70\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4.<\/span><\/p>\n<pre style=\"background-color: #e5e5e5; font-size: 15px;\"> <strong><span style=\"color: #008080;\">#create heatmap with no axis labels or legend\n<\/span>ggplot(melt_mtcars, aes(variable, char)) +\n  geom_tile(aes(fill = rescale), color = \"white\") +\n  scale_fill_gradient(low = \"white\", high = \"steelblue\") +\n  <span style=\"color: #800080;\">labs(x = \"\", y = \"\") +\n  theme(legend.position = \"none\")<\/span><\/strong><\/pre>\n","protected":false},"excerpt":{"rendered":"<p>\uc774 \ud29c\ud1a0\ub9ac\uc5bc\uc5d0\uc11c\ub294 ggplot2\ub97c \uc0ac\uc6a9\ud558\uc5ec R\uc5d0\uc11c \ud788\ud2b8 \ub9f5\uc744 \ub9cc\ub4dc\ub294 \ubc29\ubc95\uc744 \uc124\uba85\ud569\ub2c8\ub2e4. \uc608: R\uc5d0\uc11c \ud788\ud2b8\ub9f5 \uc0dd\uc131 \ud788\ud2b8\ub9f5\uc744 \uc0dd\uc131\ud558\uae30 \uc704\ud574 \ub0b4\uc7a5\ub41c R \ub370\uc774\ud130\uc138\ud2b8 mtcars\ub97c \uc0ac\uc6a9\ud569\ub2c8\ub2e4. #view first six rows of mtcars head(mtcars) # mpg cyl disp hp drat wt qsec vs am gear carb #Mazda RX4 21.0 6 160 110 3.90 2.620 16.46 0 1 4 4 #Mazda [&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-471","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 \uc5f4 \uc9c0\ub3c4\ub97c \ub9cc\ub4dc\ub294 \ubc29\ubc95 - \ud1b5\uacc4<\/title>\n<meta name=\"description\" content=\"\uc774 \ud29c\ud1a0\ub9ac\uc5bc\uc5d0\uc11c\ub294 ggplot2\ub97c \uc0ac\uc6a9\ud558\uc5ec R\uc5d0\uc11c \ud788\ud2b8 \ub9f5\uc744 \ub9cc\ub4dc\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\/\u1112\u1175\u1110\u1173\u1106\u1162\u11b8-r-ggplot2\/\" \/>\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 \uc5f4 \uc9c0\ub3c4\ub97c \ub9cc\ub4dc\ub294 \ubc29\ubc95 - \ud1b5\uacc4\" \/>\n<meta property=\"og:description\" content=\"\uc774 \ud29c\ud1a0\ub9ac\uc5bc\uc5d0\uc11c\ub294 ggplot2\ub97c \uc0ac\uc6a9\ud558\uc5ec R\uc5d0\uc11c \ud788\ud2b8 \ub9f5\uc744 \ub9cc\ub4dc\ub294 \ubc29\ubc95\uc744 \uc124\uba85\ud569\ub2c8\ub2e4.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/statorials.org\/ko\/\u1112\u1175\u1110\u1173\u1106\u1162\u11b8-r-ggplot2\/\" \/>\n<meta property=\"og:site_name\" content=\"Statorials\" \/>\n<meta property=\"article:published_time\" content=\"2023-07-29T19:19:54+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%92%e1%85%b5%e1%84%90%e1%85%b3%e1%84%86%e1%85%a2%e1%86%b8-r-ggplot2\/\",\"url\":\"https:\/\/statorials.org\/ko\/%e1%84%92%e1%85%b5%e1%84%90%e1%85%b3%e1%84%86%e1%85%a2%e1%86%b8-r-ggplot2\/\",\"name\":\"ggplot2\ub97c \uc0ac\uc6a9\ud558\uc5ec R\uc5d0\uc11c \uc5f4 \uc9c0\ub3c4\ub97c \ub9cc\ub4dc\ub294 \ubc29\ubc95 - \ud1b5\uacc4\",\"isPartOf\":{\"@id\":\"https:\/\/statorials.org\/ko\/#website\"},\"datePublished\":\"2023-07-29T19:19:54+00:00\",\"dateModified\":\"2023-07-29T19:19:54+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 \ud788\ud2b8 \ub9f5\uc744 \ub9cc\ub4dc\ub294 \ubc29\ubc95\uc744 \uc124\uba85\ud569\ub2c8\ub2e4.\",\"breadcrumb\":{\"@id\":\"https:\/\/statorials.org\/ko\/%e1%84%92%e1%85%b5%e1%84%90%e1%85%b3%e1%84%86%e1%85%a2%e1%86%b8-r-ggplot2\/#breadcrumb\"},\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/statorials.org\/ko\/%e1%84%92%e1%85%b5%e1%84%90%e1%85%b3%e1%84%86%e1%85%a2%e1%86%b8-r-ggplot2\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/statorials.org\/ko\/%e1%84%92%e1%85%b5%e1%84%90%e1%85%b3%e1%84%86%e1%85%a2%e1%86%b8-r-ggplot2\/#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 \ud788\ud2b8 \ub9f5\uc744 \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 \uc5f4 \uc9c0\ub3c4\ub97c \ub9cc\ub4dc\ub294 \ubc29\ubc95 - \ud1b5\uacc4","description":"\uc774 \ud29c\ud1a0\ub9ac\uc5bc\uc5d0\uc11c\ub294 ggplot2\ub97c \uc0ac\uc6a9\ud558\uc5ec R\uc5d0\uc11c \ud788\ud2b8 \ub9f5\uc744 \ub9cc\ub4dc\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\/\u1112\u1175\u1110\u1173\u1106\u1162\u11b8-r-ggplot2\/","og_locale":"ko_KR","og_type":"article","og_title":"ggplot2\ub97c \uc0ac\uc6a9\ud558\uc5ec R\uc5d0\uc11c \uc5f4 \uc9c0\ub3c4\ub97c \ub9cc\ub4dc\ub294 \ubc29\ubc95 - \ud1b5\uacc4","og_description":"\uc774 \ud29c\ud1a0\ub9ac\uc5bc\uc5d0\uc11c\ub294 ggplot2\ub97c \uc0ac\uc6a9\ud558\uc5ec R\uc5d0\uc11c \ud788\ud2b8 \ub9f5\uc744 \ub9cc\ub4dc\ub294 \ubc29\ubc95\uc744 \uc124\uba85\ud569\ub2c8\ub2e4.","og_url":"https:\/\/statorials.org\/ko\/\u1112\u1175\u1110\u1173\u1106\u1162\u11b8-r-ggplot2\/","og_site_name":"Statorials","article_published_time":"2023-07-29T19:19:54+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%92%e1%85%b5%e1%84%90%e1%85%b3%e1%84%86%e1%85%a2%e1%86%b8-r-ggplot2\/","url":"https:\/\/statorials.org\/ko\/%e1%84%92%e1%85%b5%e1%84%90%e1%85%b3%e1%84%86%e1%85%a2%e1%86%b8-r-ggplot2\/","name":"ggplot2\ub97c \uc0ac\uc6a9\ud558\uc5ec R\uc5d0\uc11c \uc5f4 \uc9c0\ub3c4\ub97c \ub9cc\ub4dc\ub294 \ubc29\ubc95 - \ud1b5\uacc4","isPartOf":{"@id":"https:\/\/statorials.org\/ko\/#website"},"datePublished":"2023-07-29T19:19:54+00:00","dateModified":"2023-07-29T19:19:54+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 \ud788\ud2b8 \ub9f5\uc744 \ub9cc\ub4dc\ub294 \ubc29\ubc95\uc744 \uc124\uba85\ud569\ub2c8\ub2e4.","breadcrumb":{"@id":"https:\/\/statorials.org\/ko\/%e1%84%92%e1%85%b5%e1%84%90%e1%85%b3%e1%84%86%e1%85%a2%e1%86%b8-r-ggplot2\/#breadcrumb"},"inLanguage":"ko-KR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/statorials.org\/ko\/%e1%84%92%e1%85%b5%e1%84%90%e1%85%b3%e1%84%86%e1%85%a2%e1%86%b8-r-ggplot2\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/statorials.org\/ko\/%e1%84%92%e1%85%b5%e1%84%90%e1%85%b3%e1%84%86%e1%85%a2%e1%86%b8-r-ggplot2\/#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 \ud788\ud2b8 \ub9f5\uc744 \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\/471","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=471"}],"version-history":[{"count":0,"href":"https:\/\/statorials.org\/ko\/wp-json\/wp\/v2\/posts\/471\/revisions"}],"wp:attachment":[{"href":"https:\/\/statorials.org\/ko\/wp-json\/wp\/v2\/media?parent=471"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/statorials.org\/ko\/wp-json\/wp\/v2\/categories?post=471"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/statorials.org\/ko\/wp-json\/wp\/v2\/tags?post=471"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}