{"id":465,"date":"2023-07-29T19:48:38","date_gmt":"2023-07-29T19:48:38","guid":{"rendered":"https:\/\/statorials.org\/ko\/%e1%84%80%e1%85%a1%e1%86%ab%e1%84%90%e1%85%b3-%e1%84%8e%e1%85%a1%e1%84%90%e1%85%b3-r-ggplot2\/"},"modified":"2023-07-29T19:48:38","modified_gmt":"2023-07-29T19:48:38","slug":"%e1%84%80%e1%85%a1%e1%86%ab%e1%84%90%e1%85%b3-%e1%84%8e%e1%85%a1%e1%84%90%e1%85%b3-r-ggplot2","status":"publish","type":"post","link":"https:\/\/statorials.org\/ko\/%e1%84%80%e1%85%a1%e1%86%ab%e1%84%90%e1%85%b3-%e1%84%8e%e1%85%a1%e1%84%90%e1%85%b3-r-ggplot2\/","title":{"rendered":"Ggplot2\ub97c \uc0ac\uc6a9\ud558\uc5ec r\uc5d0\uc11c gantt \ucc28\ud2b8\ub97c \ub9cc\ub4dc\ub294 \ubc29\ubc95"},"content":{"rendered":"<p><\/p>\n<hr>\n<p><span style=\"color: #000000;\"><strong>\uac04\ud2b8 \ucc28\ud2b8(Gantt Chart)\ub294<\/strong> \ub2e4\uc591\ud55c \uc774\ubca4\ud2b8\uc758 \uc2dc\uc791 \uc2dc\uac04\uacfc \uc885\ub8cc \uc2dc\uac04\uc744 \ub098\ud0c0\ub0b4\ub294 \ucc28\ud2b8 \uc720\ud615\uc785\ub2c8\ub2e4.<\/span><\/p>\n<p> <span style=\"color: #000000;\">\uc774 \ud29c\ud1a0\ub9ac\uc5bc\uc5d0\uc11c\ub294 <strong>ggplot2<\/strong> \ud328\ud0a4\uc9c0\ub97c \uc0ac\uc6a9\ud558\uc5ec R\uc5d0\uc11c Gantt \ucc28\ud2b8\ub97c \ub9cc\ub4dc\ub294 \ubc29\ubc95\uc744 \uc124\uba85\ud569\ub2c8\ub2e4.<\/span><\/p>\n<h2> <span style=\"color: #000000;\"><strong>ggplot2\ub97c \uc0ac\uc6a9\ud558\uc5ec R\uc5d0\uc11c \uac04\ud2b8 \ucc28\ud2b8 \ub9cc\ub4e4\uae30<\/strong><\/span><\/h2>\n<p> <span style=\"color: #000000;\">\ud55c \ub9e4\uc7a5\uc5d0\uc11c \uc9c1\uc6d0 4\uba85\uc758 \uad50\ub300 \uadfc\ubb34 \uc2dc\uc791 \uc2dc\uac04\uacfc \uc885\ub8cc \uc2dc\uac04\uc744 \ubcf4\uc5ec\uc8fc\ub294 \ub2e4\uc74c \ub370\uc774\ud130 \uc138\ud2b8\uac00 \uc788\ub2e4\uace0 \uac00\uc815\ud574 \ubcf4\uaca0\uc2b5\ub2c8\ub2e4.<\/span><\/p>\n<pre style=\"background-color: #e5e5e5; font-size: 15px;\"> <strong><span style=\"color: #008080;\">#create data frame<\/span>\ndata &lt;- data.frame(name = c('Bob', 'Greg', 'Mike', 'Andy'), \nstart = c(4, 7, 12, 16),\nend = c(12, 11, 8, 22),\nshift_type = c('early', 'mid_day', 'mid_day', 'late')\n)\ndata\n\n# name start end shift_type\n#1 Bob 4 12 early\n#2 Greg 7 11 mid_day\n#3 Mike 12 8 mid_day\n#4 Andy 16 22 late<\/strong><\/pre>\n<p> <span style=\"color: #000000;\">\uac01 \uc791\uc5c5\uc790\uc758 \uc2dc\uc791 \ubc0f \uc885\ub8cc \uc2dc\uac04\uc744 \uc2dc\uac01\ud654\ud558\ub294 ggplot2\ub97c \uc0ac\uc6a9\ud558\uc5ec \uac04\ud2b8 \ucc28\ud2b8\ub97c \ub9cc\ub4e4\ub824\uba74 \ub2e4\uc74c \ucf54\ub4dc\ub97c \uc0ac\uc6a9\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4.<\/span><\/p>\n<pre style=\"background-color: #e5e5e5; font-size: 15px;\"> <strong><span style=\"color: #008080;\">#install (if not already installed) and load ggplot2<\/span>\nif(!require(ggplot2)){install.packages('ggplot2')}\n\n<span style=\"color: #008080;\">#create gantt chart that visualizes start and end time for each worker<\/span>\nggplot(data, aes(x=start, xend=end, y=name, yend=name, color=shift_type)) +\n  geom_segment()\n<\/strong><\/pre>\n<p> <span style=\"color: #000000;\">\uadf8\ub7ec\uba74 \ub2e4\uc74c\uacfc \uac19\uc740 \uac04\ud2b8 \ucc28\ud2b8\uac00 \uc0dd\uc131\ub429\ub2c8\ub2e4.<\/span><\/p>\n<p> <span style=\"color: #000000;\">\ub808\uc774\uc544\uc6c3\uc744 \uba87 \uac00\uc9c0 \uc870\uc815\ud558\uba74 \uc774 \uac04\ud2b8 \ucc28\ud2b8\ub97c \ud6e8\uc52c \ub354 \ubcf4\uae30 \uc88b\uac8c \ub9cc\ub4e4 \uc218 \uc788\uc2b5\ub2c8\ub2e4.<\/span><\/p>\n<pre style=\"background-color: #e5e5e5; font-size: 15px;\"> <strong>ggplot(data, aes(x=start, xend=end, y=name, yend=name, color=shift_type)) +<\/strong>\n<strong>theme_bw()+ <span style=\"color: #008080;\">#use ggplot theme with black gridlines and white background<\/span><\/strong>\n<strong>geom_segment(size=8) + <span style=\"color: #008080;\">#increase line width of segments in the chart<\/span><\/strong>\n<strong>labs(title='Worker Schedule', x='Time', y='Worker Name')<\/strong><\/pre>\n<p> <span style=\"color: #000000;\">\uadf8\ub7ec\uba74 \ub2e4\uc74c \uadf8\ub798\ud504\uac00 \uc0dd\uc131\ub429\ub2c8\ub2e4.<\/span><\/p>\n<p> <span style=\"color: #000000;\">\ub610\ud55c \ucc28\ud2b8\uc5d0 \uc0ac\uc6a9\ud560 \uc815\ud655\ud55c \uc0c9\uc0c1\uc744 \uc124\uc815\ud558\ub824\uba74 \ub2e4\uc74c \ucf54\ub4dc\ub97c \uc0ac\uc6a9\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4.<\/span><\/p>\n<pre style=\"background-color: #e5e5e5; font-size: 15px;\"> <strong>ggplot(data, aes(x=start, xend=end, y=name, yend=name, color=shift_type)) +\n  theme_bw()+ <span style=\"color: #008080;\">#use ggplot theme with black gridlines and white background<\/span>\n  geom_segment(size=8) + <span style=\"color: #008080;\">#increase line width of segments in the chart<\/span>\n  labs(title='Worker Schedule', x='Time', y='Worker Name') +\n  scale_color_manual(values = c('pink', 'purple', 'blue'))<\/strong><\/pre>\n<p> <span style=\"color: #000000;\">\uadf8\ub7ec\uba74 \ub2e4\uc591\ud55c \uad50\ub300 \uc720\ud615\uc744 \ub098\ud0c0\ub0b4\ub294 \ubd84\ud64d\uc0c9, \ubcf4\ub77c\uc0c9, \ud30c\ub780\uc0c9\uc758 \ub2e4\uc74c \uadf8\ub798\ud504\uac00 \uc0dd\uc131\ub429\ub2c8\ub2e4.<\/span><\/p>\n<h2> <span style=\"color: #000000;\"><strong>\ub9de\ucda4 \ud14c\ub9c8 \uc0ac\uc6a9<\/strong><\/span><\/h2>\n<p> <span style=\"color: #000000;\"><a href=\"https:\/\/yutannihilation.github.io\/allYourFigureAreBelongToUs\/ggthemes\/\" target=\"_blank\" rel=\"noopener\"><strong>ggthemes<\/strong><\/a> \ub77c\uc774\ube0c\ub7ec\ub9ac\uc758 \uc0ac\uc6a9\uc790 \uc815\uc758 \ud14c\ub9c8\ub97c \uc0ac\uc6a9\ud558\uba74 \ub354 \ub098\uc544\uac08 \uc218 \uc788\uc2b5\ub2c8\ub2e4.<\/span><\/p>\n<p> <span style=\"color: #000000;\">\uc608\ub97c \ub4e4\uc5b4, Wall Street Journal\uc5d0\uc11c \uc601\uac10\uc744 \ubc1b\uc740 \ud14c\ub9c8\ub97c \uc0ac\uc6a9\ud558\ub294 \uac04\ud2b8 \ucc28\ud2b8\ub97c \ub9cc\ub4e4 \uc218 \uc788\uc2b5\ub2c8\ub2e4.<\/span><\/p>\n<pre style=\"background-color: #e5e5e5; font-size: 15px;\"> <strong><span style=\"color: #008080;\">#load <em>ggthemes<\/em> library<\/span>\nlibrary(ggthemes)\n\n<span style=\"color: #008080;\">#create scatterplot with Wall Street Journal theme\n<\/span>ggplot(data, aes(x=start, xend=end, y=name, yend=name, color=shift_type)) +\n  theme_bw()+\n  geom_segment(size=8) +\n  labs(title='Worker Schedule', x='Time', y='Worker Name') +\n  scale_color_manual(values = c('pink', 'purple', 'blue')) <span style=\"color: #800080;\">+\n  theme_wsj() + \n  theme(axis.title = element_text())<\/span><\/strong><\/pre>\n<p> <span style=\"color: #000000;\">\uc544\ub2c8\uba74 The Economist\uc5d0\uc11c \uc601\uac10\uc744 \ubc1b\uc740 \uc8fc\uc81c\ub97c \uc0ac\uc6a9\ud560 \uc218\ub3c4 \uc788\uc2b5\ub2c8\ub2e4.<\/span><\/p>\n<pre style=\"background-color: #e5e5e5; font-size: 15px;\"> <strong>ggplot(data, aes(x=start, xend=end, y=name, yend=name, color=shift_type)) +\n  theme_bw()+\n  geom_segment(size=8) +\n  labs(title='Worker Schedule', x='Time', y='Worker Name') +\n  scale_color_manual(values = c('pink', 'purple', 'blue')) <span style=\"color: #800080;\">+\n  theme_economist() + \n  theme(axis.title = element_text())<\/span><\/strong><\/pre>\n<p> <span style=\"color: #000000;\">\uc544\ub2c8\uba74 <a href=\"https:\/\/fivethirtyeight.com\/\" target=\"_blank\" rel=\"noopener\">5\uc2dc 38\ubd84<\/a> \uc5d0\uc11c \uc601\uac10\uc744 \ubc1b\uc740 \ud14c\ub9c8\uc77c \uc218\ub3c4 \uc788\uc2b5\ub2c8\ub2e4.<\/span><\/p>\n<pre style=\"background-color: #e5e5e5; font-size: 15px;\"> <strong>ggplot(data, aes(x=start, xend=end, y=name, yend=name, color=shift_type)) +\n  theme_bw()+\n  geom_segment(size=8) +\n  labs(title='Worker Schedule', x='Time', y='Worker Name') +\n  scale_color_manual(values = c('pink', 'purple', 'blue')) <span style=\"color: #800080;\">+\n  theme_fivethirtyeight() + \n  theme(axis.title = element_text())<\/span><\/strong><\/pre>\n<p> <span style=\"color: #000000;\"><em>ggthemes<\/em> \ub77c\uc774\ube0c\ub7ec\ub9ac\uc5d0\uc11c \uc0ac\uc6a9\ud560 \uc218 \uc788\ub294 \uc804\uccb4 \ud14c\ub9c8 \ubaa9\ub85d\uc740 <a href=\"https:\/\/yutannihilation.github.io\/allYourFigureAreBelongToUs\/ggthemes\/\" target=\"_blank\" rel=\"noopener\">\uc124\uba85\uc11c \ud398\uc774\uc9c0\ub97c<\/a> \ucc38\uc870\ud558\uc138\uc694.<\/span><\/p>\n","protected":false},"excerpt":{"rendered":"<p>\uac04\ud2b8 \ucc28\ud2b8(Gantt Chart)\ub294 \ub2e4\uc591\ud55c \uc774\ubca4\ud2b8\uc758 \uc2dc\uc791 \uc2dc\uac04\uacfc \uc885\ub8cc \uc2dc\uac04\uc744 \ub098\ud0c0\ub0b4\ub294 \ucc28\ud2b8 \uc720\ud615\uc785\ub2c8\ub2e4. \uc774 \ud29c\ud1a0\ub9ac\uc5bc\uc5d0\uc11c\ub294 ggplot2 \ud328\ud0a4\uc9c0\ub97c \uc0ac\uc6a9\ud558\uc5ec R\uc5d0\uc11c Gantt \ucc28\ud2b8\ub97c \ub9cc\ub4dc\ub294 \ubc29\ubc95\uc744 \uc124\uba85\ud569\ub2c8\ub2e4. ggplot2\ub97c \uc0ac\uc6a9\ud558\uc5ec R\uc5d0\uc11c \uac04\ud2b8 \ucc28\ud2b8 \ub9cc\ub4e4\uae30 \ud55c \ub9e4\uc7a5\uc5d0\uc11c \uc9c1\uc6d0 4\uba85\uc758 \uad50\ub300 \uadfc\ubb34 \uc2dc\uc791 \uc2dc\uac04\uacfc \uc885\ub8cc \uc2dc\uac04\uc744 \ubcf4\uc5ec\uc8fc\ub294 \ub2e4\uc74c \ub370\uc774\ud130 \uc138\ud2b8\uac00 \uc788\ub2e4\uace0 \uac00\uc815\ud574 \ubcf4\uaca0\uc2b5\ub2c8\ub2e4. #create data frame data &lt;- data.frame(name = c(&#8216;Bob&#8217;, &#8216;Greg&#8217;, [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[20],"tags":[],"class_list":["post-465","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 \uac04\ud2b8 \ucc28\ud2b8\ub97c \ub9cc\ub4dc\ub294 \ubc29\ubc95 - \ud1b5\uacc4<\/title>\n<meta name=\"description\" content=\"ggplot2\ub97c \uc0ac\uc6a9\ud558\uc5ec R\uc5d0\uc11c Gantt \ucc28\ud2b8\ub97c \ub9cc\ub4dc\ub294 \ubc29\ubc95\uc5d0 \ub300\ud55c \uac04\ub2e8\ud55c \ud29c\ud1a0\ub9ac\uc5bc\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\/\u1100\u1161\u11ab\u1110\u1173-\u110e\u1161\u1110\u1173-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 \uac04\ud2b8 \ucc28\ud2b8\ub97c \ub9cc\ub4dc\ub294 \ubc29\ubc95 - \ud1b5\uacc4\" \/>\n<meta property=\"og:description\" content=\"ggplot2\ub97c \uc0ac\uc6a9\ud558\uc5ec R\uc5d0\uc11c Gantt \ucc28\ud2b8\ub97c \ub9cc\ub4dc\ub294 \ubc29\ubc95\uc5d0 \ub300\ud55c \uac04\ub2e8\ud55c \ud29c\ud1a0\ub9ac\uc5bc\uc785\ub2c8\ub2e4.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/statorials.org\/ko\/\u1100\u1161\u11ab\u1110\u1173-\u110e\u1161\u1110\u1173-r-ggplot2\/\" \/>\n<meta property=\"og:site_name\" content=\"Statorials\" \/>\n<meta property=\"article:published_time\" content=\"2023-07-29T19:48:38+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%80%e1%85%a1%e1%86%ab%e1%84%90%e1%85%b3-%e1%84%8e%e1%85%a1%e1%84%90%e1%85%b3-r-ggplot2\/\",\"url\":\"https:\/\/statorials.org\/ko\/%e1%84%80%e1%85%a1%e1%86%ab%e1%84%90%e1%85%b3-%e1%84%8e%e1%85%a1%e1%84%90%e1%85%b3-r-ggplot2\/\",\"name\":\"ggplot2\ub97c \uc0ac\uc6a9\ud558\uc5ec R\uc5d0\uc11c \uac04\ud2b8 \ucc28\ud2b8\ub97c \ub9cc\ub4dc\ub294 \ubc29\ubc95 - \ud1b5\uacc4\",\"isPartOf\":{\"@id\":\"https:\/\/statorials.org\/ko\/#website\"},\"datePublished\":\"2023-07-29T19:48:38+00:00\",\"dateModified\":\"2023-07-29T19:48:38+00:00\",\"author\":{\"@id\":\"https:\/\/statorials.org\/ko\/#\/schema\/person\/600556789b7d79cbaa9d9f0c721b74f4\"},\"description\":\"ggplot2\ub97c \uc0ac\uc6a9\ud558\uc5ec R\uc5d0\uc11c Gantt \ucc28\ud2b8\ub97c \ub9cc\ub4dc\ub294 \ubc29\ubc95\uc5d0 \ub300\ud55c \uac04\ub2e8\ud55c \ud29c\ud1a0\ub9ac\uc5bc\uc785\ub2c8\ub2e4.\",\"breadcrumb\":{\"@id\":\"https:\/\/statorials.org\/ko\/%e1%84%80%e1%85%a1%e1%86%ab%e1%84%90%e1%85%b3-%e1%84%8e%e1%85%a1%e1%84%90%e1%85%b3-r-ggplot2\/#breadcrumb\"},\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/statorials.org\/ko\/%e1%84%80%e1%85%a1%e1%86%ab%e1%84%90%e1%85%b3-%e1%84%8e%e1%85%a1%e1%84%90%e1%85%b3-r-ggplot2\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/statorials.org\/ko\/%e1%84%80%e1%85%a1%e1%86%ab%e1%84%90%e1%85%b3-%e1%84%8e%e1%85%a1%e1%84%90%e1%85%b3-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 gantt \ucc28\ud2b8\ub97c \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 \uac04\ud2b8 \ucc28\ud2b8\ub97c \ub9cc\ub4dc\ub294 \ubc29\ubc95 - \ud1b5\uacc4","description":"ggplot2\ub97c \uc0ac\uc6a9\ud558\uc5ec R\uc5d0\uc11c Gantt \ucc28\ud2b8\ub97c \ub9cc\ub4dc\ub294 \ubc29\ubc95\uc5d0 \ub300\ud55c \uac04\ub2e8\ud55c \ud29c\ud1a0\ub9ac\uc5bc\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\/\u1100\u1161\u11ab\u1110\u1173-\u110e\u1161\u1110\u1173-r-ggplot2\/","og_locale":"ko_KR","og_type":"article","og_title":"ggplot2\ub97c \uc0ac\uc6a9\ud558\uc5ec R\uc5d0\uc11c \uac04\ud2b8 \ucc28\ud2b8\ub97c \ub9cc\ub4dc\ub294 \ubc29\ubc95 - \ud1b5\uacc4","og_description":"ggplot2\ub97c \uc0ac\uc6a9\ud558\uc5ec R\uc5d0\uc11c Gantt \ucc28\ud2b8\ub97c \ub9cc\ub4dc\ub294 \ubc29\ubc95\uc5d0 \ub300\ud55c \uac04\ub2e8\ud55c \ud29c\ud1a0\ub9ac\uc5bc\uc785\ub2c8\ub2e4.","og_url":"https:\/\/statorials.org\/ko\/\u1100\u1161\u11ab\u1110\u1173-\u110e\u1161\u1110\u1173-r-ggplot2\/","og_site_name":"Statorials","article_published_time":"2023-07-29T19:48:38+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%80%e1%85%a1%e1%86%ab%e1%84%90%e1%85%b3-%e1%84%8e%e1%85%a1%e1%84%90%e1%85%b3-r-ggplot2\/","url":"https:\/\/statorials.org\/ko\/%e1%84%80%e1%85%a1%e1%86%ab%e1%84%90%e1%85%b3-%e1%84%8e%e1%85%a1%e1%84%90%e1%85%b3-r-ggplot2\/","name":"ggplot2\ub97c \uc0ac\uc6a9\ud558\uc5ec R\uc5d0\uc11c \uac04\ud2b8 \ucc28\ud2b8\ub97c \ub9cc\ub4dc\ub294 \ubc29\ubc95 - \ud1b5\uacc4","isPartOf":{"@id":"https:\/\/statorials.org\/ko\/#website"},"datePublished":"2023-07-29T19:48:38+00:00","dateModified":"2023-07-29T19:48:38+00:00","author":{"@id":"https:\/\/statorials.org\/ko\/#\/schema\/person\/600556789b7d79cbaa9d9f0c721b74f4"},"description":"ggplot2\ub97c \uc0ac\uc6a9\ud558\uc5ec R\uc5d0\uc11c Gantt \ucc28\ud2b8\ub97c \ub9cc\ub4dc\ub294 \ubc29\ubc95\uc5d0 \ub300\ud55c \uac04\ub2e8\ud55c \ud29c\ud1a0\ub9ac\uc5bc\uc785\ub2c8\ub2e4.","breadcrumb":{"@id":"https:\/\/statorials.org\/ko\/%e1%84%80%e1%85%a1%e1%86%ab%e1%84%90%e1%85%b3-%e1%84%8e%e1%85%a1%e1%84%90%e1%85%b3-r-ggplot2\/#breadcrumb"},"inLanguage":"ko-KR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/statorials.org\/ko\/%e1%84%80%e1%85%a1%e1%86%ab%e1%84%90%e1%85%b3-%e1%84%8e%e1%85%a1%e1%84%90%e1%85%b3-r-ggplot2\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/statorials.org\/ko\/%e1%84%80%e1%85%a1%e1%86%ab%e1%84%90%e1%85%b3-%e1%84%8e%e1%85%a1%e1%84%90%e1%85%b3-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 gantt \ucc28\ud2b8\ub97c \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\/465","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=465"}],"version-history":[{"count":0,"href":"https:\/\/statorials.org\/ko\/wp-json\/wp\/v2\/posts\/465\/revisions"}],"wp:attachment":[{"href":"https:\/\/statorials.org\/ko\/wp-json\/wp\/v2\/media?parent=465"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/statorials.org\/ko\/wp-json\/wp\/v2\/categories?post=465"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/statorials.org\/ko\/wp-json\/wp\/v2\/tags?post=465"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}