{"id":3134,"date":"2023-07-19T01:08:41","date_gmt":"2023-07-19T01:08:41","guid":{"rendered":"https:\/\/statorials.org\/ko\/ggplot%e1%84%8b%e1%85%b3%e1%86%ab-%e1%84%91%e1%85%a7%e1%86%bc%e1%84%80%e1%85%a1%e1%84%83%e1%85%ac%e1%84%8c%e1%85%b5-%e1%84%8b%e1%85%a1%e1%86%ad%e1%84%8b%e1%85%b3%e1%86%ab-%e1%84%83%e1%85%a6%e1%84%8b\/"},"modified":"2023-07-19T01:08:41","modified_gmt":"2023-07-19T01:08:41","slug":"ggplot%e1%84%8b%e1%85%b3%e1%86%ab-%e1%84%91%e1%85%a7%e1%86%bc%e1%84%80%e1%85%a1%e1%84%83%e1%85%ac%e1%84%8c%e1%85%b5-%e1%84%8b%e1%85%a1%e1%86%ad%e1%84%8b%e1%85%b3%e1%86%ab-%e1%84%83%e1%85%a6%e1%84%8b","status":"publish","type":"post","link":"https:\/\/statorials.org\/ko\/ggplot%e1%84%8b%e1%85%b3%e1%86%ab-%e1%84%91%e1%85%a7%e1%86%bc%e1%84%80%e1%85%a1%e1%84%83%e1%85%ac%e1%84%8c%e1%85%b5-%e1%84%8b%e1%85%a1%e1%86%ad%e1%84%8b%e1%85%b3%e1%86%ab-%e1%84%83%e1%85%a6%e1%84%8b\/","title":{"rendered":"\uc218\uc815 \ubc29\ubc95: ggplot2\uac00 \ub3d9\uc77c\ud558\uc9c0 \uc54a\uc740 \ud074\ub798\uc2a4 \ub370\uc774\ud130\ub97c \ucc98\ub9ac\ud558\ub294 \ubc29\ubc95\uc744 \ubaa8\ub985\ub2c8\ub2e4."},"content":{"rendered":"<p><\/p>\n<hr>\n<p><span style=\"color: #000000;\">R\uc5d0\uc11c \ubc1c\uc0dd\ud560 \uc218 \uc788\ub294 \uc624\ub958\ub294 \ub2e4\uc74c\uacfc \uac19\uc2b5\ub2c8\ub2e4.<\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <strong>Error: ggplot2 doesn't know how to deal with data of class uneval\n<\/strong><\/pre>\n<p> <span style=\"color: #000000;\">\uc774 \uc624\ub958\ub294 \uc77c\ubc18\uc801\uc73c\ub85c <strong>ggplot2\ub97c<\/strong> \uc0ac\uc6a9\ud558\uc5ec \ub450 \uac1c\uc758 \ub370\uc774\ud130 \ud504\ub808\uc784\uc744 \ud55c \ubc88\uc5d0 \ud50c\ub86f\ud558\ub824\uace0 \ud558\uc9c0\ub9cc <strong>geom_line()<\/strong> \ud568\uc218\uc5d0\uc11c <strong>\ub370\uc774\ud130<\/strong> \uc778\uc218\ub97c \uc0ac\uc6a9\ud560 \uc218 \uc5c6\uc744 \ub54c \ubc1c\uc0dd\ud569\ub2c8\ub2e4.<\/span><\/p>\n<p> <span style=\"color: #000000;\">\uc774 \ud29c\ud1a0\ub9ac\uc5bc\uc5d0\uc11c\ub294 \uc774 \uc624\ub958\ub97c \uc218\uc815\ud558\ub294 \ubc29\ubc95\uc744 \uc815\ud655\ud558\uac8c \uc124\uba85\ud569\ub2c8\ub2e4.<\/span><\/p>\n<h2> <strong>\uc624\ub958\ub97c \uc7ac\ud604\ud558\ub294 \ubc29\ubc95<\/strong><\/h2>\n<p> <span style=\"color: #000000;\">R\uc5d0 \ud2b9\uc815 \uc2dc\uac04\uacfc \ub2e4\ub978 \ub0a0\uc9dc\uc5d0 \ubc1c\uc0dd\ud55c \ud310\ub9e4\ub7c9\uc744 \ud45c\uc2dc\ud558\ub294 \ub450 \uac1c\uc758 \ub370\uc774\ud130 \ud504\ub808\uc784\uc774 \uc788\ub2e4\uace0 \uac00\uc815\ud574 \ubcf4\uaca0\uc2b5\ub2c8\ub2e4.<\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <span style=\"color: #000000;\"><strong><span style=\"color: #008080;\">#create first data frame\n<span style=\"color: #000000;\">df &lt;- data. <span style=\"color: #3366ff;\">frame<\/span> (date=c(1, 1, 1, 2, 2, 2, 3, 3, 3),\n                 hour=c(1, 2, 3, 1, 2, 3, 1, 2, 3),\n                 sales=c(2, 5, 7, 5, 8, 12, 10, 14, 13))\n\n<span style=\"color: #008080;\">#view data frame\n<\/span>head(df)\n\n  date hour sales\n1 1 1 2\n2 1 2 5\n3 1 3 7\n4 2 1 5\n5 2 2 8\n6 2 3 12\n\n<span style=\"color: #008080;\">#create second data frame\n<\/span>df_new &lt;- data. <span style=\"color: #3366ff;\">frame<\/span> (date=c(4, 4, 4, 5, 5, 5),\n                     hour=c(1, 2, 3, 1, 2, 3),\n                     sales=c(12, 13, 19, 15, 18, 20))\n\n<span style=\"color: #008080;\">#view data frame \n<\/span>head(df_new)\n\n  date hour sales\n1 4 1 12\n2 4 2 13\n3 4 3 19\n4 5 1 15\n5 5 2 18\n6 5 3 20<\/span><\/span><\/strong><\/span><\/pre>\n<p> <span style=\"color: #000000;\">\uc774\uc81c \uccab \ubc88\uc9f8 \ub370\uc774\ud130 \ud504\ub808\uc784\uc5d0 \ud30c\ub780\uc0c9\uc744 \uc0ac\uc6a9\ud558\uace0 \ub450 \ubc88\uc9f8 \ub370\uc774\ud130 \ud504\ub808\uc784\uc5d0 \ube68\uac04\uc0c9\uc744 \uc0ac\uc6a9\ud558\uc5ec \uc77c\ubcc4 \ubc0f \uc2dc\uac04\ubcc4\ub85c \uadf8\ub8f9\ud654\ub41c \ub9e4\ucd9c\uc744 \uc2dc\uac01\ud654\ud558\ub294 \uaebe\uc740\uc120\ud615 \ucc28\ud2b8\ub97c \ub9cc\ub4e4\ub824\uace0 \ud55c\ub2e4\uace0 \uac00\uc815\ud574 \ubcf4\uaca0\uc2b5\ub2c8\ub2e4.<\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <span style=\"color: #008080;\"><strong><span style=\"color: #000000;\"><span style=\"color: #008000;\">library<\/span> (ggplot2)<\/span>\n\n#attempt to create line chart\n<span style=\"color: #000000;\">ggplot(df, aes(x=hour, y=sales, group=date)) +\n  geom_line(color=' <span style=\"color: #ff0000;\">blue<\/span> ') +\n  geom_line(df_new, aes(x=hour, y=sales, group=date), color=' <span style=\"color: #ff0000;\">red<\/span> ')\n\nError: ggplot2 doesn't know how to deal with data of class uneval\n<\/span><\/strong><\/span><\/pre>\n<p> <span style=\"color: #000000;\">\ub450 \ubc88\uc9f8 <strong>geom_line()<\/strong> \ud568\uc218\uc5d0\uc11c <strong>\ub370\uc774\ud130<\/strong> \uc778\uc218\ub97c \uc0ac\uc6a9\ud558\uc9c0 \ubabb\ud588\uae30 \ub54c\ubb38\uc5d0 \uc624\ub958\uac00 \ubc1c\uc0dd\ud588\uc2b5\ub2c8\ub2e4.<\/span><\/p>\n<h2> <span style=\"color: #000000;\"><strong>\uc624\ub958\ub97c \uc218\uc815\ud558\ub294 \ubc29\ubc95<\/strong><\/span><\/h2>\n<p> <span style=\"color: #000000;\">\uc774 \uc624\ub958\ub97c \ud574\uacb0\ud558\ub294 \ubc29\ubc95\uc740 \ub2e8\uc21c\ud788 \ub450 \ubc88\uc9f8 <strong>geom_line()<\/strong> \uc778\uc218\uc5d0 \ub370\uc774\ud130\ub97c \uc785\ub825\ud558\uc5ec R\uc774 \uc6b0\ub9ac\uac00 \ud50c\ub86f\ud558\ub824\ub294 \ub370\uc774\ud130 \ud504\ub808\uc784\uc744 \uc54c \uc218 \uc788\ub3c4\ub85d \ud558\ub294 \uac83\uc785\ub2c8\ub2e4.<\/span> <\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <span style=\"color: #008080;\"><strong><span style=\"color: #000000;\"><span style=\"color: #008000;\">library<\/span> (ggplot2)<\/span>\n\n#create line chart\n<span style=\"color: #000000;\">ggplot(df, aes(x=hour, y=sales, group=date)) +\n  geom_line(color=' <span style=\"color: #ff0000;\">blue<\/span> ') +\n  geom_line(data=df_new, aes(x=hour, y=sales, group=date), color=' <span style=\"color: #ff0000;\">red<\/span> ')<\/span><\/strong><\/span> <\/pre>\n<p><img decoding=\"async\" loading=\"lazy\" class=\" wp-image-26691 aligncenter\" src=\"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/classe1.jpg\" alt=\"\" width=\"435\" height=\"437\" srcset=\"\" sizes=\"auto, \"><\/p>\n<p> <span style=\"color: #000000;\">\uc774\ubc88\uc5d0\ub294 \uc624\ub958 \uc5c6\uc774 \uc131\uacf5\uc801\uc73c\ub85c \uaebe\uc740\uc120\ud615 \ucc28\ud2b8\ub97c \ub9cc\ub4e4 \uc218 \uc788\uc2b5\ub2c8\ub2e4.<\/span><\/p>\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\uc758 \ub2e4\ub978 \uc77c\ubc18\uc801\uc778 \uc624\ub958\ub97c \ud574\uacb0\ud558\ub294 \ubc29\ubc95\uc744 \uc124\uba85\ud569\ub2c8\ub2e4.<\/span><\/p>\n<p> <a href=\"https:\/\/statorials.org\/ko\/r-\u110b\u1169\u1105\u1172-\u1107\u1161\u11af\u1109\u1162\u11bc-\u1102\u1161\u11af\u110d\u1161\u1105\u1173\u11af-\u110c\u1166\u1100\u1169\u11bc\u1112\u1162\u110b\u1163-\u1112\u1161\u11b8\u1102\u1175\u1103\u1161.\/\" target=\"_blank\" rel=\"noopener\">R \uc218\uc815 \ubc29\ubc95: as.Date.numeric(x)\uc758 \uc624\ub958: &#8220;origin&#8221;\uc744 \uc81c\uacf5\ud574\uc57c \ud569\ub2c8\ub2e4.<\/a><br \/> <a href=\"https:\/\/statorials.org\/ko\/r-\u110b\u1169\u1105\u1172-\u1109\u1173\u1110\u1173\u1105\u1175\u11b8-\u110e\u1161\u1110\u1173-\u1100\u1175\u1107\u1169\u11ab-\u110c\u1161\u11af\u1106\u1169\u11ba\u1103\u116c\u11ab-\u1111\u1173\u11af\u1105\u1169\u1110\u1175\u11bc-\u1107\u1161\u11bc\u1107\u1165\u11b8\/\" target=\"_blank\" rel=\"noopener\">\ud574\uacb0 \ubc29\ubc95: Stripchart.default(x1, \u2026)\uc758 \uc624\ub958: \uc798\ubabb\ub41c \ud50c\ub85c\ud305 \ubc29\ubc95<\/a><br \/> <a href=\"https:\/\/statorials.org\/ko\/evalpredvars-\u1103\u1166\u110b\u1175\u1110\u1165-env-\u1100\u1162\u110e\u1166\u110b\u1166-\u110b\u1169\u1105\u1172\u1100\u1161-\u110b\u1175\u11bb\u1109\u1173\u11b8\u1102\u1175\u1103\u1161.\/\" target=\"_blank\" rel=\"noopener\">\ud574\uacb0 \ubc29\ubc95: \ud3c9\uac00 \uc624\ub958(predvars, data, env): &#8216;x&#8217; \uac1c\uccb4\ub97c \ucc3e\uc744 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4.<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>R\uc5d0\uc11c \ubc1c\uc0dd\ud560 \uc218 \uc788\ub294 \uc624\ub958\ub294 \ub2e4\uc74c\uacfc \uac19\uc2b5\ub2c8\ub2e4. Error: ggplot2 doesn&#8217;t know how to deal with data of class uneval \uc774 \uc624\ub958\ub294 \uc77c\ubc18\uc801\uc73c\ub85c ggplot2\ub97c \uc0ac\uc6a9\ud558\uc5ec \ub450 \uac1c\uc758 \ub370\uc774\ud130 \ud504\ub808\uc784\uc744 \ud55c \ubc88\uc5d0 \ud50c\ub86f\ud558\ub824\uace0 \ud558\uc9c0\ub9cc geom_line() \ud568\uc218\uc5d0\uc11c \ub370\uc774\ud130 \uc778\uc218\ub97c \uc0ac\uc6a9\ud560 \uc218 \uc5c6\uc744 \ub54c \ubc1c\uc0dd\ud569\ub2c8\ub2e4. \uc774 \ud29c\ud1a0\ub9ac\uc5bc\uc5d0\uc11c\ub294 \uc774 \uc624\ub958\ub97c \uc218\uc815\ud558\ub294 \ubc29\ubc95\uc744 \uc815\ud655\ud558\uac8c \uc124\uba85\ud569\ub2c8\ub2e4. \uc624\ub958\ub97c \uc7ac\ud604\ud558\ub294 \ubc29\ubc95 R\uc5d0 \ud2b9\uc815 \uc2dc\uac04\uacfc [&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-3134","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>\uc218\uc815 \ubc29\ubc95: ggplot2\uac00 \ub3d9\uc77c\ud558\uc9c0 \uc54a\uc740 \ud074\ub798\uc2a4 \ub370\uc774\ud130\ub97c \ucc98\ub9ac\ud558\ub294 \ubc29\ubc95\uc744 \ubaa8\ub985\ub2c8\ub2e4 - Statorials<\/title>\n<meta name=\"description\" content=\"\uc774 \ud29c\ud1a0\ub9ac\uc5bc\uc5d0\uc11c\ub294 R\uc5d0\uc11c \ub2e4\uc74c \uc624\ub958\ub97c \uc218\uc815\ud558\ub294 \ubc29\ubc95\uc744 \uc124\uba85\ud569\ub2c8\ub2e4. ggplot2\ub294 \ub3d9\uc77c\ud558\uc9c0 \uc54a\uc740 \ud074\ub798\uc2a4 \ub370\uc774\ud130\ub97c \ucc98\ub9ac\ud558\ub294 \ubc29\ubc95\uc744 \ubaa8\ub985\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\u110b\u1173\u11ab-\u1111\u1167\u11bc\u1100\u1161\u1103\u116c\u110c\u1175-\u110b\u1161\u11ad\u110b\u1173\u11ab-\u1103\u1166\u110b\/\" \/>\n<meta property=\"og:locale\" content=\"ko_KR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"\uc218\uc815 \ubc29\ubc95: ggplot2\uac00 \ub3d9\uc77c\ud558\uc9c0 \uc54a\uc740 \ud074\ub798\uc2a4 \ub370\uc774\ud130\ub97c \ucc98\ub9ac\ud558\ub294 \ubc29\ubc95\uc744 \ubaa8\ub985\ub2c8\ub2e4 - Statorials\" \/>\n<meta property=\"og:description\" content=\"\uc774 \ud29c\ud1a0\ub9ac\uc5bc\uc5d0\uc11c\ub294 R\uc5d0\uc11c \ub2e4\uc74c \uc624\ub958\ub97c \uc218\uc815\ud558\ub294 \ubc29\ubc95\uc744 \uc124\uba85\ud569\ub2c8\ub2e4. ggplot2\ub294 \ub3d9\uc77c\ud558\uc9c0 \uc54a\uc740 \ud074\ub798\uc2a4 \ub370\uc774\ud130\ub97c \ucc98\ub9ac\ud558\ub294 \ubc29\ubc95\uc744 \ubaa8\ub985\ub2c8\ub2e4.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/statorials.org\/ko\/ggplot\u110b\u1173\u11ab-\u1111\u1167\u11bc\u1100\u1161\u1103\u116c\u110c\u1175-\u110b\u1161\u11ad\u110b\u1173\u11ab-\u1103\u1166\u110b\/\" \/>\n<meta property=\"og:site_name\" content=\"Statorials\" \/>\n<meta property=\"article:published_time\" content=\"2023-07-19T01:08:41+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/classe1.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%8b%e1%85%b3%e1%86%ab-%e1%84%91%e1%85%a7%e1%86%bc%e1%84%80%e1%85%a1%e1%84%83%e1%85%ac%e1%84%8c%e1%85%b5-%e1%84%8b%e1%85%a1%e1%86%ad%e1%84%8b%e1%85%b3%e1%86%ab-%e1%84%83%e1%85%a6%e1%84%8b\/\",\"url\":\"https:\/\/statorials.org\/ko\/ggplot%e1%84%8b%e1%85%b3%e1%86%ab-%e1%84%91%e1%85%a7%e1%86%bc%e1%84%80%e1%85%a1%e1%84%83%e1%85%ac%e1%84%8c%e1%85%b5-%e1%84%8b%e1%85%a1%e1%86%ad%e1%84%8b%e1%85%b3%e1%86%ab-%e1%84%83%e1%85%a6%e1%84%8b\/\",\"name\":\"\uc218\uc815 \ubc29\ubc95: ggplot2\uac00 \ub3d9\uc77c\ud558\uc9c0 \uc54a\uc740 \ud074\ub798\uc2a4 \ub370\uc774\ud130\ub97c \ucc98\ub9ac\ud558\ub294 \ubc29\ubc95\uc744 \ubaa8\ub985\ub2c8\ub2e4 - Statorials\",\"isPartOf\":{\"@id\":\"https:\/\/statorials.org\/ko\/#website\"},\"datePublished\":\"2023-07-19T01:08:41+00:00\",\"dateModified\":\"2023-07-19T01:08:41+00:00\",\"author\":{\"@id\":\"https:\/\/statorials.org\/ko\/#\/schema\/person\/600556789b7d79cbaa9d9f0c721b74f4\"},\"description\":\"\uc774 \ud29c\ud1a0\ub9ac\uc5bc\uc5d0\uc11c\ub294 R\uc5d0\uc11c \ub2e4\uc74c \uc624\ub958\ub97c \uc218\uc815\ud558\ub294 \ubc29\ubc95\uc744 \uc124\uba85\ud569\ub2c8\ub2e4. ggplot2\ub294 \ub3d9\uc77c\ud558\uc9c0 \uc54a\uc740 \ud074\ub798\uc2a4 \ub370\uc774\ud130\ub97c \ucc98\ub9ac\ud558\ub294 \ubc29\ubc95\uc744 \ubaa8\ub985\ub2c8\ub2e4.\",\"breadcrumb\":{\"@id\":\"https:\/\/statorials.org\/ko\/ggplot%e1%84%8b%e1%85%b3%e1%86%ab-%e1%84%91%e1%85%a7%e1%86%bc%e1%84%80%e1%85%a1%e1%84%83%e1%85%ac%e1%84%8c%e1%85%b5-%e1%84%8b%e1%85%a1%e1%86%ad%e1%84%8b%e1%85%b3%e1%86%ab-%e1%84%83%e1%85%a6%e1%84%8b\/#breadcrumb\"},\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/statorials.org\/ko\/ggplot%e1%84%8b%e1%85%b3%e1%86%ab-%e1%84%91%e1%85%a7%e1%86%bc%e1%84%80%e1%85%a1%e1%84%83%e1%85%ac%e1%84%8c%e1%85%b5-%e1%84%8b%e1%85%a1%e1%86%ad%e1%84%8b%e1%85%b3%e1%86%ab-%e1%84%83%e1%85%a6%e1%84%8b\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/statorials.org\/ko\/ggplot%e1%84%8b%e1%85%b3%e1%86%ab-%e1%84%91%e1%85%a7%e1%86%bc%e1%84%80%e1%85%a1%e1%84%83%e1%85%ac%e1%84%8c%e1%85%b5-%e1%84%8b%e1%85%a1%e1%86%ad%e1%84%8b%e1%85%b3%e1%86%ab-%e1%84%83%e1%85%a6%e1%84%8b\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\uc9d1\",\"item\":\"https:\/\/statorials.org\/ko\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"\uc218\uc815 \ubc29\ubc95: ggplot2\uac00 \ub3d9\uc77c\ud558\uc9c0 \uc54a\uc740 \ud074\ub798\uc2a4 \ub370\uc774\ud130\ub97c \ucc98\ub9ac\ud558\ub294 \ubc29\ubc95\uc744 \ubaa8\ub985\ub2c8\ub2e4.\"}]},{\"@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":"\uc218\uc815 \ubc29\ubc95: ggplot2\uac00 \ub3d9\uc77c\ud558\uc9c0 \uc54a\uc740 \ud074\ub798\uc2a4 \ub370\uc774\ud130\ub97c \ucc98\ub9ac\ud558\ub294 \ubc29\ubc95\uc744 \ubaa8\ub985\ub2c8\ub2e4 - Statorials","description":"\uc774 \ud29c\ud1a0\ub9ac\uc5bc\uc5d0\uc11c\ub294 R\uc5d0\uc11c \ub2e4\uc74c \uc624\ub958\ub97c \uc218\uc815\ud558\ub294 \ubc29\ubc95\uc744 \uc124\uba85\ud569\ub2c8\ub2e4. ggplot2\ub294 \ub3d9\uc77c\ud558\uc9c0 \uc54a\uc740 \ud074\ub798\uc2a4 \ub370\uc774\ud130\ub97c \ucc98\ub9ac\ud558\ub294 \ubc29\ubc95\uc744 \ubaa8\ub985\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\u110b\u1173\u11ab-\u1111\u1167\u11bc\u1100\u1161\u1103\u116c\u110c\u1175-\u110b\u1161\u11ad\u110b\u1173\u11ab-\u1103\u1166\u110b\/","og_locale":"ko_KR","og_type":"article","og_title":"\uc218\uc815 \ubc29\ubc95: ggplot2\uac00 \ub3d9\uc77c\ud558\uc9c0 \uc54a\uc740 \ud074\ub798\uc2a4 \ub370\uc774\ud130\ub97c \ucc98\ub9ac\ud558\ub294 \ubc29\ubc95\uc744 \ubaa8\ub985\ub2c8\ub2e4 - Statorials","og_description":"\uc774 \ud29c\ud1a0\ub9ac\uc5bc\uc5d0\uc11c\ub294 R\uc5d0\uc11c \ub2e4\uc74c \uc624\ub958\ub97c \uc218\uc815\ud558\ub294 \ubc29\ubc95\uc744 \uc124\uba85\ud569\ub2c8\ub2e4. ggplot2\ub294 \ub3d9\uc77c\ud558\uc9c0 \uc54a\uc740 \ud074\ub798\uc2a4 \ub370\uc774\ud130\ub97c \ucc98\ub9ac\ud558\ub294 \ubc29\ubc95\uc744 \ubaa8\ub985\ub2c8\ub2e4.","og_url":"https:\/\/statorials.org\/ko\/ggplot\u110b\u1173\u11ab-\u1111\u1167\u11bc\u1100\u1161\u1103\u116c\u110c\u1175-\u110b\u1161\u11ad\u110b\u1173\u11ab-\u1103\u1166\u110b\/","og_site_name":"Statorials","article_published_time":"2023-07-19T01:08:41+00:00","og_image":[{"url":"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/classe1.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%8b%e1%85%b3%e1%86%ab-%e1%84%91%e1%85%a7%e1%86%bc%e1%84%80%e1%85%a1%e1%84%83%e1%85%ac%e1%84%8c%e1%85%b5-%e1%84%8b%e1%85%a1%e1%86%ad%e1%84%8b%e1%85%b3%e1%86%ab-%e1%84%83%e1%85%a6%e1%84%8b\/","url":"https:\/\/statorials.org\/ko\/ggplot%e1%84%8b%e1%85%b3%e1%86%ab-%e1%84%91%e1%85%a7%e1%86%bc%e1%84%80%e1%85%a1%e1%84%83%e1%85%ac%e1%84%8c%e1%85%b5-%e1%84%8b%e1%85%a1%e1%86%ad%e1%84%8b%e1%85%b3%e1%86%ab-%e1%84%83%e1%85%a6%e1%84%8b\/","name":"\uc218\uc815 \ubc29\ubc95: ggplot2\uac00 \ub3d9\uc77c\ud558\uc9c0 \uc54a\uc740 \ud074\ub798\uc2a4 \ub370\uc774\ud130\ub97c \ucc98\ub9ac\ud558\ub294 \ubc29\ubc95\uc744 \ubaa8\ub985\ub2c8\ub2e4 - Statorials","isPartOf":{"@id":"https:\/\/statorials.org\/ko\/#website"},"datePublished":"2023-07-19T01:08:41+00:00","dateModified":"2023-07-19T01:08:41+00:00","author":{"@id":"https:\/\/statorials.org\/ko\/#\/schema\/person\/600556789b7d79cbaa9d9f0c721b74f4"},"description":"\uc774 \ud29c\ud1a0\ub9ac\uc5bc\uc5d0\uc11c\ub294 R\uc5d0\uc11c \ub2e4\uc74c \uc624\ub958\ub97c \uc218\uc815\ud558\ub294 \ubc29\ubc95\uc744 \uc124\uba85\ud569\ub2c8\ub2e4. ggplot2\ub294 \ub3d9\uc77c\ud558\uc9c0 \uc54a\uc740 \ud074\ub798\uc2a4 \ub370\uc774\ud130\ub97c \ucc98\ub9ac\ud558\ub294 \ubc29\ubc95\uc744 \ubaa8\ub985\ub2c8\ub2e4.","breadcrumb":{"@id":"https:\/\/statorials.org\/ko\/ggplot%e1%84%8b%e1%85%b3%e1%86%ab-%e1%84%91%e1%85%a7%e1%86%bc%e1%84%80%e1%85%a1%e1%84%83%e1%85%ac%e1%84%8c%e1%85%b5-%e1%84%8b%e1%85%a1%e1%86%ad%e1%84%8b%e1%85%b3%e1%86%ab-%e1%84%83%e1%85%a6%e1%84%8b\/#breadcrumb"},"inLanguage":"ko-KR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/statorials.org\/ko\/ggplot%e1%84%8b%e1%85%b3%e1%86%ab-%e1%84%91%e1%85%a7%e1%86%bc%e1%84%80%e1%85%a1%e1%84%83%e1%85%ac%e1%84%8c%e1%85%b5-%e1%84%8b%e1%85%a1%e1%86%ad%e1%84%8b%e1%85%b3%e1%86%ab-%e1%84%83%e1%85%a6%e1%84%8b\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/statorials.org\/ko\/ggplot%e1%84%8b%e1%85%b3%e1%86%ab-%e1%84%91%e1%85%a7%e1%86%bc%e1%84%80%e1%85%a1%e1%84%83%e1%85%ac%e1%84%8c%e1%85%b5-%e1%84%8b%e1%85%a1%e1%86%ad%e1%84%8b%e1%85%b3%e1%86%ab-%e1%84%83%e1%85%a6%e1%84%8b\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\uc9d1","item":"https:\/\/statorials.org\/ko\/"},{"@type":"ListItem","position":2,"name":"\uc218\uc815 \ubc29\ubc95: ggplot2\uac00 \ub3d9\uc77c\ud558\uc9c0 \uc54a\uc740 \ud074\ub798\uc2a4 \ub370\uc774\ud130\ub97c \ucc98\ub9ac\ud558\ub294 \ubc29\ubc95\uc744 \ubaa8\ub985\ub2c8\ub2e4."}]},{"@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\/3134","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=3134"}],"version-history":[{"count":0,"href":"https:\/\/statorials.org\/ko\/wp-json\/wp\/v2\/posts\/3134\/revisions"}],"wp:attachment":[{"href":"https:\/\/statorials.org\/ko\/wp-json\/wp\/v2\/media?parent=3134"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/statorials.org\/ko\/wp-json\/wp\/v2\/categories?post=3134"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/statorials.org\/ko\/wp-json\/wp\/v2\/tags?post=3134"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}