{"id":2910,"date":"2023-07-20T03:17:30","date_gmt":"2023-07-20T03:17:30","guid":{"rendered":"https:\/\/statorials.org\/ko\/ggplot-%e1%84%80%e1%85%b5%e1%84%87%e1%85%a9%e1%86%ab-%e1%84%89%e1%85%a2%e1%86%a8%e1%84%89%e1%85%a1%e1%86%bc\/"},"modified":"2023-07-20T03:17:30","modified_gmt":"2023-07-20T03:17:30","slug":"ggplot-%e1%84%80%e1%85%b5%e1%84%87%e1%85%a9%e1%86%ab-%e1%84%89%e1%85%a2%e1%86%a8%e1%84%89%e1%85%a1%e1%86%bc","status":"publish","type":"post","link":"https:\/\/statorials.org\/ko\/ggplot-%e1%84%80%e1%85%b5%e1%84%87%e1%85%a9%e1%86%ab-%e1%84%89%e1%85%a2%e1%86%a8%e1%84%89%e1%85%a1%e1%86%bc\/","title":{"rendered":"Ggplot2\uc758 \uae30\ubcf8 \uc0c9\uc0c1\uc5d0 \ub300\ud55c \uc804\uccb4 \uac00\uc774\ub4dc"},"content":{"rendered":"<p><\/p>\n<hr>\n<p><span style=\"color: #000000;\"><span style=\"color: #000000;\"><a href=\"https:\/\/ggplot2.tidyverse.org\/\" target=\"_blank\" rel=\"noopener\">ggplot2<\/a> \ud328\ud0a4\uc9c0\uc5d0\ub294<\/span><\/span> <span style=\"color: #000000;\">\ucd1d \uc694\uc18c \uc218\ub97c \uae30\ubc18\uc73c\ub85c \ud50c\ub86f\uc758 \uc694\uc18c\uc5d0 \uc0ac\uc6a9\ub418\ub294 \uae30\ubcf8 \uc0c9\uc0c1 \ubaa9\ub85d\uc774 \ud3ec\ud568\ub418\uc5b4 \uc788\uc2b5\ub2c8\ub2e4.<\/span><\/p>\n<p> <span style=\"color: #000000;\">\uc608\ub97c \ub4e4\uc5b4, \ub2e4\uc74c \ucf54\ub4dc\ub294 \uc138 \uac1c\uc758 \ub9c9\ub300\uac00 \uc788\ub294 \ub9c9\ub300 \uadf8\ub798\ud504\ub97c \uc0dd\uc131\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;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\">library<\/span> (ggplot2)\n<\/span>\n#create data frame\n<span style=\"color: #000000;\">df &lt;- data. <span style=\"color: #3366ff;\">frame<\/span> (team=c('A', 'B', 'C'),\n                 dots=c(22, 28, 15))<\/span>\n\n#create bar plot using df\n<span style=\"color: #000000;\">ggplot(df, aes(x=team, y=points, fill=team)) +\n  geom_bar(stat = \" <span style=\"color: #ff0000;\">identity<\/span> \")<\/span><\/span><\/strong> <\/pre>\n<p><img decoding=\"async\" loading=\"lazy\" class=\" wp-image-25372 aligncenter\" src=\"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/teinte1-1.jpg\" alt=\"\" width=\"440\" height=\"450\" srcset=\"\" sizes=\"auto, \"><\/p>\n<p> <span style=\"color: #000000;\">\uae30\ubcf8\uc801\uc73c\ub85c ggplot2\ub294 \ub9c9\ub300\uc5d0 \ube68\uac04\uc0c9, \ub179\uc0c9 \ubc0f \ud30c\ub780\uc0c9\uc758 \ud2b9\uc815 \uc74c\uc601\uc744 \uc0ac\uc6a9\ud558\ub3c4\ub85d \uc120\ud0dd\ud569\ub2c8\ub2e4.<\/span><\/p>\n<p> <span style=\"color: #000000;\"><strong>scales<\/strong> \ud328\ud0a4\uc9c0\uc758 <strong>hue_pal()\uc744<\/strong> \uc0ac\uc6a9\ud558\uc5ec \ud50c\ub86f\uc5d0 \uc0ac\uc6a9\ub41c \uc2e4\uc81c 16\uc9c4\uc218 \uc0c9\uc0c1 \ucf54\ub4dc\ub97c \ucd94\ucd9c\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4.<\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <strong><span style=\"color: #008000;\">library<\/span> (scales)\n\n<span style=\"color: #008080;\">#extract hex color codes for a plot with three elements in ggplot2<\/span> \nhex &lt;- hue_pal()( <span style=\"color: #008000;\">3<\/span> )\n\n<span style=\"color: #008080;\">#display hex color codes\n<\/span>hex\n\n[1] \"#F8766D\" \"#00BA38\" \"#619CFF\"\n<\/strong><\/pre>\n<p> <span style=\"color: #000000;\">\uacb0\uacfc\ub97c \ud574\uc11d\ud558\ub294 \ubc29\ubc95\uc740 \ub2e4\uc74c\uacfc \uac19\uc2b5\ub2c8\ub2e4.<\/span><\/p>\n<ul>\n<li> <span style=\"color: #000000;\">\ud50c\ub86f\uc5d0\uc11c \ube68\uac04\uc0c9\uc758 16\uc9c4\uc218 \uc0c9\uc0c1 \ucf54\ub4dc\ub294 <strong>#F8766D<\/strong> \uc785\ub2c8\ub2e4.<\/span><\/li>\n<li> <span style=\"color: #000000;\">\ud50c\ub86f\uc5d0\uc11c \ub179\uc0c9\uc758 16\uc9c4\uc218 \uc0c9\uc0c1 \ucf54\ub4dc\ub294 <strong>#00BA38<\/strong> \uc785\ub2c8\ub2e4.<\/span><\/li>\n<li> <span style=\"color: #000000;\">\ud50c\ub86f\uc5d0\uc11c \ud30c\ub780\uc0c9\uc758 16\uc9c4\uc218 \uc0c9\uc0c1 \ucf54\ub4dc\ub294 <strong>#619CFF<\/strong> \uc785\ub2c8\ub2e4.<\/span><\/li>\n<\/ul>\n<p> <span style=\"color: #000000;\"><strong>scales<\/strong> \ud328\ud0a4\uc9c0\uc758 <strong>show_col()\uc744<\/strong> \uc0ac\uc6a9\ud558\uc5ec 16\uc9c4\uc218 \uc0c9\uc0c1 \ucf54\ub4dc\ub97c \uc2e4\uc81c \uc0c9\uc0c1\uc5d0 \uc624\ubc84\ub808\uc774\ud560 \uc218\ub3c4 \uc788\uc2b5\ub2c8\ub2e4.<\/span> <\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <strong><span style=\"color: #008000;\">library<\/span> (scales)\n\n<span style=\"color: #008080;\">#extract hex color codes for a plot with three elements in ggplot2<\/span> \nhex &lt;- hue_pal()( <span style=\"color: #008000;\">3<\/span> )\n\n<span style=\"color: #008080;\">#overlay hex color codes on actual colors\n<\/span>show_col(hex)\n<\/strong><\/pre>\n<p><img decoding=\"async\" loading=\"lazy\" class=\"aligncenter wp-image-25373\" src=\"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/teinte2-1.jpg\" alt=\"ggplot2 16\uc9c4\uc218 \uc0c9\uc0c1 \ucf54\ub4dc\" width=\"460\" height=\"461\" srcset=\"\" sizes=\"auto, \"><\/p>\n<p> <span style=\"color: #000000;\">\uadf8\ub9ac\uace0 \ub2e4\uc74c \ucf54\ub4dc\ub97c \uc0ac\uc6a9\ud558\uc5ec 1~8\uac1c\uc758 \uc694\uc18c\uac00 \uc788\ub294 \ud50c\ub86f\uc5d0 \ub300\ud55c \uae30\ubcf8 ggplot2 \uc0c9\uc0c1\uc744 \ud45c\uc2dc\ud558\ub294 \ud50c\ub86f\uc744 \uc0dd\uc131\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4.<\/span> <\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <strong><span style=\"color: #008000;\">library<\/span> (scales)\n\n<span style=\"color: #008080;\">#set margins of plot area\n<\/span>by(may = c(0.1, 0, 0.1, 0), bg = \" <span style=\"color: #ff0000;\">grey85<\/span> \")\n\n<span style=\"color: #008080;\">#create plot with ggplot2 default colors from 1 to 8\n<\/span>gc. <span style=\"color: #3366ff;\">grid<\/span> &lt;- layout(matrix(1:8, nrow = <span style=\"color: #008000;\">8<\/span> ))\n<span style=\"color: #008000;\">for<\/span> (i <span style=\"color: #008000;\">in<\/span> 1:8){\n   gc. <span style=\"color: #3366ff;\">ramp<\/span> &lt;- hue_pal()(i)\n   plot(c(0, 8), c(0,1),\n        type=\" <span style=\"color: #ff0000;\">n<\/span> \", \n        bty=\" <span style=\"color: #ff0000;\">n<\/span> \", \n        xaxt=\" <span style=\"color: #ff0000;\">n<\/span> \", \n        yaxt=\" <span style=\"color: #ff0000;\">n<\/span> \", xlab=\"\", ylab=\"\")\n   <span style=\"color: #008000;\">for<\/span> (j <span style=\"color: #008000;\">in<\/span> 1:i){\n      rect(j - 1, 0, j - 0.25, 1, col = gc. <span style=\"color: #3366ff;\">ramp<\/span> [j])\n   }\n}<\/strong> <\/pre>\n<p><img decoding=\"async\" loading=\"lazy\" class=\"aligncenter wp-image-25374 \" src=\"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/teinte3.jpg\" alt=\"ggplot2 \uae30\ubcf8 \uc0c9\uc0c1\" width=\"454\" height=\"454\" srcset=\"\" sizes=\"auto, \"><\/p>\n<p> <span style=\"color: #000000;\">\uadf8\ub9ac\uace0 \ub2e4\uc74c \ucf54\ub4dc\ub97c \uc0ac\uc6a9\ud558\uc5ec \ud50c\ub86f\uc5d0 \ud45c\uc2dc\ub41c \uac01 \uc0c9\uc0c1\uc5d0 \ub300\ud55c 16\uc9c4\uc218 \uc0c9\uc0c1 \ucf54\ub4dc\ub97c \ud45c\uc2dc\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4.<\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <strong><span style=\"color: #008000;\">library<\/span> (scales)\n\n<span style=\"color: #008080;\">#display ggplot2 default hex color codes from 1 to 8\n<\/span><span style=\"color: #008000;\">for<\/span> (i <span style=\"color: #008000;\">in<\/span> 1:8){\n  <span style=\"color: #008000;\">print<\/span> (hue_pal()(i))\n}\n\n[1] \"#F8766D\"\n[1] \"#F8766D\" \"#00BFC4\"\n[1] \"#F8766D\" \"#00BA38\" \"#619CFF\"\n[1] \"#F8766D\" \"#7CAE00\" \"#00BFC4\" \"#C77CFF\"\n[1] \"#F8766D\" \"#A3A500\" \"#00BF7D\" \"#00B0F6\" \"#E76BF3\"\n[1] \"#F8766D\" \"#B79F00\" \"#00BA38\" \"#00BFC4\" \"#619CFF\" \"#F564E3\"\n[1] \"#F8766D\" \"#C49A00\" \"#53B400\" \"#00C094\" \"#00B6EB\" \"#A58AFF\" \"#FB61D7\"\n[1] \"#F8766D\" \"#CD9600\" \"#7CAE00\" \"#00BE67\" \"#00BFC4\" \"#00A9FF\" \"#C77CFF\" \"#FF61CC\"\n<\/strong><\/pre>\n<h3> <span style=\"color: #000000;\"><strong>\ucd94\uac00 \ub9ac\uc18c\uc2a4<\/strong><\/span><\/h3>\n<p> <span style=\"color: #000000;\">\ub2e4\uc74c \ud29c\ud1a0\ub9ac\uc5bc\uc5d0\uc11c\ub294 R\uc5d0\uc11c \ub2e4\ub978 \uc77c\ubc18\uc801\uc778 \uc791\uc5c5\uc744 \uc218\ud589\ud558\ub294 \ubc29\ubc95\uc744 \uc124\uba85\ud569\ub2c8\ub2e4.<\/span><\/p>\n<p> <a href=\"https:\/\/statorials.org\/ko\/\u110e\u116c\u1100\u1169\u110b\u1174-ggplot2-\u1110\u1166\u1106\u1161\/\" target=\"_blank\" rel=\"noopener\">\ucd5c\uace0\uc758 ggplot2 \ud14c\ub9c8\uc5d0 \ub300\ud55c \uc644\ubcbd\ud55c \uac00\uc774\ub4dc<\/a><br \/> <a href=\"https:\/\/statorials.org\/ko\/ggplot2-\u1107\u1165\u11b7\u1105\u1168\u110b\u1174-\u110f\u1173\u1100\u1175\/\" target=\"_blank\" rel=\"noopener\">ggplot2\uc5d0\uc11c \ubc94\ub840 \ud06c\uae30\ub97c \ubcc0\uacbd\ud558\ub294 \ubc29\ubc95<\/a><br \/> <a href=\"https:\/\/statorials.org\/ko\/ggplot2-\u1107\u1165\u11b7\u1105\u1168-\u110c\u1166\u1100\u1165\/\" target=\"_blank\" rel=\"noopener\">ggplot2\uc5d0\uc11c \ubc94\ub840\ub97c \uc81c\uac70\ud558\ub294 \ubc29\ubc95<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>ggplot2 \ud328\ud0a4\uc9c0\uc5d0\ub294 \ucd1d \uc694\uc18c \uc218\ub97c \uae30\ubc18\uc73c\ub85c \ud50c\ub86f\uc758 \uc694\uc18c\uc5d0 \uc0ac\uc6a9\ub418\ub294 \uae30\ubcf8 \uc0c9\uc0c1 \ubaa9\ub85d\uc774 \ud3ec\ud568\ub418\uc5b4 \uc788\uc2b5\ub2c8\ub2e4. \uc608\ub97c \ub4e4\uc5b4, \ub2e4\uc74c \ucf54\ub4dc\ub294 \uc138 \uac1c\uc758 \ub9c9\ub300\uac00 \uc788\ub294 \ub9c9\ub300 \uadf8\ub798\ud504\ub97c \uc0dd\uc131\ud558\ub294 \ubc29\ubc95\uc744 \ubcf4\uc5ec\uc90d\ub2c8\ub2e4. library (ggplot2) #create data frame df &lt;- data. frame (team=c(&#8216;A&#8217;, &#8216;B&#8217;, &#8216;C&#8217;), dots=c(22, 28, 15)) #create bar plot using df ggplot(df, aes(x=team, y=points, fill=team)) + geom_bar(stat = &#8221; [&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-2910","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\uc758 \uae30\ubcf8 \uc0c9\uc0c1\uc5d0 \ub300\ud55c \uc804\uccb4 \uac00\uc774\ub4dc - Statorials<\/title>\n<meta name=\"description\" content=\"\uc774 \ud29c\ud1a0\ub9ac\uc5bc\uc740 \uba87 \uac00\uc9c0 \uc608\ub97c \ud3ec\ud568\ud558\uc5ec R\uc758 ggplot2 \ud328\ud0a4\uc9c0\ub97c \uc0ac\uc6a9\ud558\uc5ec \uae30\ubcf8 \uc0c9\uc0c1\uc5d0 \ub300\ud55c \uc644\uc804\ud55c \uac00\uc774\ub4dc\ub97c \uc81c\uacf5\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\/ggplot-\u1100\u1175\u1107\u1169\u11ab-\u1109\u1162\u11a8\u1109\u1161\u11bc\/\" \/>\n<meta property=\"og:locale\" content=\"ko_KR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"ggplot2\uc758 \uae30\ubcf8 \uc0c9\uc0c1\uc5d0 \ub300\ud55c \uc804\uccb4 \uac00\uc774\ub4dc - Statorials\" \/>\n<meta property=\"og:description\" content=\"\uc774 \ud29c\ud1a0\ub9ac\uc5bc\uc740 \uba87 \uac00\uc9c0 \uc608\ub97c \ud3ec\ud568\ud558\uc5ec R\uc758 ggplot2 \ud328\ud0a4\uc9c0\ub97c \uc0ac\uc6a9\ud558\uc5ec \uae30\ubcf8 \uc0c9\uc0c1\uc5d0 \ub300\ud55c \uc644\uc804\ud55c \uac00\uc774\ub4dc\ub97c \uc81c\uacf5\ud569\ub2c8\ub2e4.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/statorials.org\/ko\/ggplot-\u1100\u1175\u1107\u1169\u11ab-\u1109\u1162\u11a8\u1109\u1161\u11bc\/\" \/>\n<meta property=\"og:site_name\" content=\"Statorials\" \/>\n<meta property=\"article:published_time\" content=\"2023-07-20T03:17:30+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/teinte1-1.jpg\" \/>\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\/ggplot-%e1%84%80%e1%85%b5%e1%84%87%e1%85%a9%e1%86%ab-%e1%84%89%e1%85%a2%e1%86%a8%e1%84%89%e1%85%a1%e1%86%bc\/\",\"url\":\"https:\/\/statorials.org\/ko\/ggplot-%e1%84%80%e1%85%b5%e1%84%87%e1%85%a9%e1%86%ab-%e1%84%89%e1%85%a2%e1%86%a8%e1%84%89%e1%85%a1%e1%86%bc\/\",\"name\":\"ggplot2\uc758 \uae30\ubcf8 \uc0c9\uc0c1\uc5d0 \ub300\ud55c \uc804\uccb4 \uac00\uc774\ub4dc - Statorials\",\"isPartOf\":{\"@id\":\"https:\/\/statorials.org\/ko\/#website\"},\"datePublished\":\"2023-07-20T03:17:30+00:00\",\"dateModified\":\"2023-07-20T03:17:30+00:00\",\"author\":{\"@id\":\"https:\/\/statorials.org\/ko\/#\/schema\/person\/600556789b7d79cbaa9d9f0c721b74f4\"},\"description\":\"\uc774 \ud29c\ud1a0\ub9ac\uc5bc\uc740 \uba87 \uac00\uc9c0 \uc608\ub97c \ud3ec\ud568\ud558\uc5ec R\uc758 ggplot2 \ud328\ud0a4\uc9c0\ub97c \uc0ac\uc6a9\ud558\uc5ec \uae30\ubcf8 \uc0c9\uc0c1\uc5d0 \ub300\ud55c \uc644\uc804\ud55c \uac00\uc774\ub4dc\ub97c \uc81c\uacf5\ud569\ub2c8\ub2e4.\",\"breadcrumb\":{\"@id\":\"https:\/\/statorials.org\/ko\/ggplot-%e1%84%80%e1%85%b5%e1%84%87%e1%85%a9%e1%86%ab-%e1%84%89%e1%85%a2%e1%86%a8%e1%84%89%e1%85%a1%e1%86%bc\/#breadcrumb\"},\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/statorials.org\/ko\/ggplot-%e1%84%80%e1%85%b5%e1%84%87%e1%85%a9%e1%86%ab-%e1%84%89%e1%85%a2%e1%86%a8%e1%84%89%e1%85%a1%e1%86%bc\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/statorials.org\/ko\/ggplot-%e1%84%80%e1%85%b5%e1%84%87%e1%85%a9%e1%86%ab-%e1%84%89%e1%85%a2%e1%86%a8%e1%84%89%e1%85%a1%e1%86%bc\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\uc9d1\",\"item\":\"https:\/\/statorials.org\/ko\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Ggplot2\uc758 \uae30\ubcf8 \uc0c9\uc0c1\uc5d0 \ub300\ud55c \uc804\uccb4 \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":"ggplot2\uc758 \uae30\ubcf8 \uc0c9\uc0c1\uc5d0 \ub300\ud55c \uc804\uccb4 \uac00\uc774\ub4dc - Statorials","description":"\uc774 \ud29c\ud1a0\ub9ac\uc5bc\uc740 \uba87 \uac00\uc9c0 \uc608\ub97c \ud3ec\ud568\ud558\uc5ec R\uc758 ggplot2 \ud328\ud0a4\uc9c0\ub97c \uc0ac\uc6a9\ud558\uc5ec \uae30\ubcf8 \uc0c9\uc0c1\uc5d0 \ub300\ud55c \uc644\uc804\ud55c \uac00\uc774\ub4dc\ub97c \uc81c\uacf5\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\/ggplot-\u1100\u1175\u1107\u1169\u11ab-\u1109\u1162\u11a8\u1109\u1161\u11bc\/","og_locale":"ko_KR","og_type":"article","og_title":"ggplot2\uc758 \uae30\ubcf8 \uc0c9\uc0c1\uc5d0 \ub300\ud55c \uc804\uccb4 \uac00\uc774\ub4dc - Statorials","og_description":"\uc774 \ud29c\ud1a0\ub9ac\uc5bc\uc740 \uba87 \uac00\uc9c0 \uc608\ub97c \ud3ec\ud568\ud558\uc5ec R\uc758 ggplot2 \ud328\ud0a4\uc9c0\ub97c \uc0ac\uc6a9\ud558\uc5ec \uae30\ubcf8 \uc0c9\uc0c1\uc5d0 \ub300\ud55c \uc644\uc804\ud55c \uac00\uc774\ub4dc\ub97c \uc81c\uacf5\ud569\ub2c8\ub2e4.","og_url":"https:\/\/statorials.org\/ko\/ggplot-\u1100\u1175\u1107\u1169\u11ab-\u1109\u1162\u11a8\u1109\u1161\u11bc\/","og_site_name":"Statorials","article_published_time":"2023-07-20T03:17:30+00:00","og_image":[{"url":"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/teinte1-1.jpg"}],"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\/ggplot-%e1%84%80%e1%85%b5%e1%84%87%e1%85%a9%e1%86%ab-%e1%84%89%e1%85%a2%e1%86%a8%e1%84%89%e1%85%a1%e1%86%bc\/","url":"https:\/\/statorials.org\/ko\/ggplot-%e1%84%80%e1%85%b5%e1%84%87%e1%85%a9%e1%86%ab-%e1%84%89%e1%85%a2%e1%86%a8%e1%84%89%e1%85%a1%e1%86%bc\/","name":"ggplot2\uc758 \uae30\ubcf8 \uc0c9\uc0c1\uc5d0 \ub300\ud55c \uc804\uccb4 \uac00\uc774\ub4dc - Statorials","isPartOf":{"@id":"https:\/\/statorials.org\/ko\/#website"},"datePublished":"2023-07-20T03:17:30+00:00","dateModified":"2023-07-20T03:17:30+00:00","author":{"@id":"https:\/\/statorials.org\/ko\/#\/schema\/person\/600556789b7d79cbaa9d9f0c721b74f4"},"description":"\uc774 \ud29c\ud1a0\ub9ac\uc5bc\uc740 \uba87 \uac00\uc9c0 \uc608\ub97c \ud3ec\ud568\ud558\uc5ec R\uc758 ggplot2 \ud328\ud0a4\uc9c0\ub97c \uc0ac\uc6a9\ud558\uc5ec \uae30\ubcf8 \uc0c9\uc0c1\uc5d0 \ub300\ud55c \uc644\uc804\ud55c \uac00\uc774\ub4dc\ub97c \uc81c\uacf5\ud569\ub2c8\ub2e4.","breadcrumb":{"@id":"https:\/\/statorials.org\/ko\/ggplot-%e1%84%80%e1%85%b5%e1%84%87%e1%85%a9%e1%86%ab-%e1%84%89%e1%85%a2%e1%86%a8%e1%84%89%e1%85%a1%e1%86%bc\/#breadcrumb"},"inLanguage":"ko-KR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/statorials.org\/ko\/ggplot-%e1%84%80%e1%85%b5%e1%84%87%e1%85%a9%e1%86%ab-%e1%84%89%e1%85%a2%e1%86%a8%e1%84%89%e1%85%a1%e1%86%bc\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/statorials.org\/ko\/ggplot-%e1%84%80%e1%85%b5%e1%84%87%e1%85%a9%e1%86%ab-%e1%84%89%e1%85%a2%e1%86%a8%e1%84%89%e1%85%a1%e1%86%bc\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\uc9d1","item":"https:\/\/statorials.org\/ko\/"},{"@type":"ListItem","position":2,"name":"Ggplot2\uc758 \uae30\ubcf8 \uc0c9\uc0c1\uc5d0 \ub300\ud55c \uc804\uccb4 \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\/2910","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=2910"}],"version-history":[{"count":0,"href":"https:\/\/statorials.org\/ko\/wp-json\/wp\/v2\/posts\/2910\/revisions"}],"wp:attachment":[{"href":"https:\/\/statorials.org\/ko\/wp-json\/wp\/v2\/media?parent=2910"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/statorials.org\/ko\/wp-json\/wp\/v2\/categories?post=2910"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/statorials.org\/ko\/wp-json\/wp\/v2\/tags?post=2910"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}