{"id":2127,"date":"2023-07-23T13:57:35","date_gmt":"2023-07-23T13:57:35","guid":{"rendered":"https:\/\/statorials.org\/ko\/seaborn-barplot-%e1%84%91%e1%85%ad%e1%84%89%e1%85%b5-%e1%84%80%e1%85%a1%e1%86%b9\/"},"modified":"2023-07-23T13:57:35","modified_gmt":"2023-07-23T13:57:35","slug":"seaborn-barplot-%e1%84%91%e1%85%ad%e1%84%89%e1%85%b5-%e1%84%80%e1%85%a1%e1%86%b9","status":"publish","type":"post","link":"https:\/\/statorials.org\/ko\/seaborn-barplot-%e1%84%91%e1%85%ad%e1%84%89%e1%85%b5-%e1%84%80%e1%85%a1%e1%86%b9\/","title":{"rendered":"Seaborn barplot\uc5d0 \uac12\uc744 \ud45c\uc2dc\ud558\ub294 \ubc29\ubc95(\uc608\uc81c \ud3ec\ud568)"},"content":{"rendered":"<p><\/p>\n<hr>\n<p><span style=\"color: #000000;\">\ub2e4\uc74c \ud568\uc218\ub97c \uc0ac\uc6a9\ud558\uc5ec <a href=\"https:\/\/seaborn.pydata.org\/\" target=\"_blank\" rel=\"noopener\">\ud574\uc591<\/a> \ub9c9\ub300 \uadf8\ub798\ud504\uc5d0 \uac12\uc744 \ud45c\uc2dc\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4.<\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <strong><span style=\"color: #008000;\">def<\/span> <span style=\"color: #3366ff;\">show_values<\/span> (axs, orient=\" <span style=\"color: #ff0000;\">v<\/span> \", space=.01):\n    def <span style=\"color: #3366ff;\">_single<\/span> (ax):\n        <span style=\"color: #008000;\">if<\/span> orient == \" <span style=\"color: #ff0000;\">v<\/span> \":\n            <span style=\"color: #008000;\">for<\/span> p <span style=\"color: #008000;\">in<\/span> ax. <span style=\"color: #3366ff;\">patches<\/span> :\n                _x = p. <span style=\"color: #3366ff;\">get_x<\/span> () + p. <span style=\"color: #3366ff;\">get_width<\/span> ()\/2\n                _y = p. <span style=\"color: #3366ff;\">get_y<\/span> () + p. <span style=\"color: #3366ff;\">get_height<\/span> () + ( <span style=\"color: #3366ff;\">p.get_height<\/span> ()*0.01)\n                value = ' <span style=\"color: #ff0000;\">{:.1f}<\/span> '. <span style=\"color: #3366ff;\">format<\/span> (e.g. <span style=\"color: #3366ff;\">get_height<\/span> ())\n                ax. <span style=\"color: #3366ff;\">text<\/span> (_x, _y, value, ha=\" <span style=\"color: #ff0000;\">center<\/span> \") \n        <span style=\"color: #008000;\">elif<\/span> orient == \" <span style=\"color: #ff0000;\">h<\/span> \":\n            <span style=\"color: #008000;\">for<\/span> p <span style=\"color: #008000;\">in<\/span> ax. <span style=\"color: #3366ff;\">patches<\/span> :\n                _x = p. <span style=\"color: #3366ff;\">get_x<\/span> () + p. <span style=\"color: #3366ff;\">get_width<\/span> () + float(space)\n                _y = p. <span style=\"color: #3366ff;\">get_y<\/span> () + p. <span style=\"color: #3366ff;\">get_height<\/span> () - (e.g. <span style=\"color: #3366ff;\">get_height<\/span> ()*0.5)\n                value = ' <span style=\"color: #ff0000;\">{:.1f}<\/span> '. <span style=\"color: #3366ff;\">format<\/span> (e.g. <span style=\"color: #3366ff;\">get_width<\/span> ())\n                ax. <span style=\"color: #3366ff;\">text<\/span> (_x, _y, value, ha=\" <span style=\"color: #ff0000;\">left<\/span> \")\n\n    <span style=\"color: #008000;\">if<\/span> isinstance(axs, <span style=\"color: #3366ff;\">np.ndarray<\/span> ):\n        <span style=\"color: #008000;\">for<\/span> idx, ax <span style=\"color: #008000;\">in<\/span> np. <span style=\"color: #3366ff;\">ndenumerate<\/span> (axs):\n            _single(ax)\n    <span style=\"color: #008000;\">else<\/span> :\n        _single(axs)\n<\/strong><\/pre>\n<p> <span style=\"color: #000000;\">\uc774 \uae30\ub2a5\uc740 \uc218\ud3c9 \ubc0f \uc218\uc9c1 \ub9c9\ub300 \uadf8\ub798\ud504\uc5d0 \uc791\ub3d9\ud569\ub2c8\ub2e4.<\/span><\/p>\n<p> <span style=\"color: #000000;\">\ub2e4\uc74c \uc608\ub294 Seaborn &#8220;tips&#8221; \ub370\uc774\ud130 \uc138\ud2b8\uc5d0\uc11c \uc2e4\uc81c\ub85c \uc774 \uae30\ub2a5\uc744 \uc0ac\uc6a9\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: #008000;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\">import<\/span> seaborn <span style=\"color: #008000;\">as<\/span> sns<\/span>\n<span style=\"color: #000000;\"><span style=\"color: #008000;\">import<\/span> pandas <span style=\"color: #008000;\">as<\/span> pd<\/span>\n<span style=\"color: #000000;\"><span style=\"color: #008000;\">import<\/span> numpy <span style=\"color: #008000;\">as<\/span> np<\/span>\n\n<span style=\"color: #008080;\">#load tips dataset<\/span>\n<span style=\"color: #000000;\">data = sns. <span style=\"color: #3366ff;\">load_dataset<\/span> (\u201c <span style=\"color: #ff0000;\">tips<\/span> \u201d)<\/span>\n\n<span style=\"color: #008080;\">#view first five rows<\/span>\n<span style=\"color: #000000;\">data. <span style=\"color: #3366ff;\">head<\/span> ()\n\n\ttotal_bill tip sex smoker day time size\n0 16.99 1.01 Female No Sun Dinner 2\n1 10.34 1.66 Male No Sun Dinner 3\n2 21.01 3.50 Male No Sun Dinner 3\n3 23.68 3.31 Male No Sun Dinner 2\n4 24.59 3.61 Female No Sun Dinner 4<\/span>\n<\/span><\/strong><\/pre>\n<h3> <span style=\"color: #000000;\"><strong>\uc608\uc2dc 1: \uc218\uc9c1 \ub9c9\ub300 \uadf8\ub798\ud504\uc5d0 \uac12 \ud45c\uc2dc<\/strong><\/span><\/h3>\n<p> <span style=\"color: #000000;\">\ub2e4\uc74c \ucf54\ub4dc\ub294 \uc218\uc9c1 \ub9c9\ub300 \uadf8\ub798\ud504\uc5d0 \uac12\uc744 \ud45c\uc2dc\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;\">#create vertical barplot<\/span>\np = sns. <span style=\"color: #3366ff;\">barplot<\/span> (x=\" <span style=\"color: #ff0000;\">day<\/span> \", y=\" <span style=\"color: #ff0000;\">tip<\/span> \", data=data, ci= <span style=\"color: #008000;\">None<\/span> )\n\n<span style=\"color: #008080;\">#show values on barplot\n<\/span>show_values(p)\n<\/strong><\/pre>\n<p><img decoding=\"async\" loading=\"lazy\" class=\" wp-image-19750 aligncenter\" src=\"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/baraffichage1.png\" alt=\"\" width=\"571\" height=\"382\" srcset=\"\" sizes=\"auto, \"><\/p>\n<h3> <span style=\"color: #000000;\"><strong>\uc608\uc2dc 2: \uc218\ud3c9 \ub9c9\ub300 \uadf8\ub798\ud504\uc5d0 \uac12 \ud45c\uc2dc<\/strong><\/span><\/h3>\n<p> <span style=\"color: #000000;\">\ub2e4\uc74c \ucf54\ub4dc\ub294 \uc218\ud3c9 \ub9c9\ub300 \uadf8\ub798\ud504\uc5d0 \uac12\uc744 \ud45c\uc2dc\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;\">#create horizontal barplot<\/span>\np = sns. <span style=\"color: #3366ff;\">barplot<\/span> (x=\" <span style=\"color: #ff0000;\">tip<\/span> \", y=\" <span style=\"color: #ff0000;\">day<\/span> \", data=data, ci= <span style=\"color: #008000;\">None<\/span> )\n\n<span style=\"color: #008080;\">#show values on barplot<\/span>\nshow_values(p, \" <span style=\"color: #ff0000;\">h<\/span> \", space= <span style=\"color: #008000;\">0<\/span> )\n<\/strong><\/pre>\n<p><img decoding=\"async\" loading=\"lazy\" class=\" wp-image-19751 aligncenter\" src=\"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/barshow2.png\" alt=\"\" width=\"578\" height=\"385\" srcset=\"\" sizes=\"auto, \"><\/p>\n<p> <span style=\"color: #000000;\">\uacf5\uac04\uc5d0 \uc0ac\uc6a9\ud558\ub294 \uac12\uc774 \ud074\uc218\ub85d \ub808\uc774\ube14\uc774 \ub9c9\ub300\uc5d0\uc11c \uba40\uc5b4\uc9d1\ub2c8\ub2e4.<\/span><\/p>\n<p> <span style=\"color: #000000;\">\uc608\ub97c \ub4e4\uc5b4 \uacf5\ubc31\uc744 <strong>0<\/strong> \uc5d0\uc11c <strong>.05<\/strong> \ub85c \ubcc0\uacbd\ud574 \ubcf4\uaca0\uc2b5\ub2c8\ub2e4.<\/span> <\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <strong><span style=\"color: #008080;\">#create horizontal barplot<\/span>\np = sns. <span style=\"color: #3366ff;\">barplot<\/span> (x=\" <span style=\"color: #ff0000;\">tip<\/span> \", y=\" <span style=\"color: #ff0000;\">day<\/span> \", data=data, ci= <span style=\"color: #008000;\">None<\/span> )\n\n<span style=\"color: #008080;\">#show values on barplot<\/span>\nshow_values(p, \" <span style=\"color: #ff0000;\">h<\/span> \", space= <span style=\"color: #008000;\">0.05<\/span> )<\/strong> <\/pre>\n<p><img decoding=\"async\" loading=\"lazy\" class=\" wp-image-19752 aligncenter\" src=\"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/barshow3.png\" alt=\"\" width=\"583\" height=\"391\" srcset=\"\" sizes=\"auto, \"><\/p>\n<p> <span style=\"color: #000000;\"><strong>\ucc38\uace0<\/strong> : \ud45c\uc2dc\ub418\ub294 \uc18c\uc218 \uc790\ub9bf\uc218\ub97c \ubcc0\uacbd\ud558\ub824\uba74 \ud568\uc218\uc758 \uc774 \uc904\uc5d0\uc11c \uac12\uc744 \ubcc0\uacbd\ud558\uba74 \ub429\ub2c8\ub2e4.<\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <strong>value = ' <span style=\"color: #ff0000;\">{:.1f}<\/span> '. <span style=\"color: #3366ff;\">format<\/span> (e.g. <span style=\"color: #3366ff;\">get_height<\/span> ())\n<\/strong><\/pre>\n<p> <span style=\"color: #000000;\">\uc608\ub97c \ub4e4\uc5b4 \ub85c \ubcc0\uacbd\ud569\ub2c8\ub2e4. <strong>1f<\/strong> ~ <strong>.2f<\/strong> \ub294 \uc18c\uc218\uc810 1\uc790\ub9ac \ub300\uc2e0 2\uc790\ub9ac\ub97c \ud45c\uc2dc\ud569\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 seaborn\uc5d0\uc11c \ub2e4\ub978 \uc77c\ubc18\uc801\uc778 \uae30\ub2a5\uc744 \uc218\ud589\ud558\ub294 \ubc29\ubc95\uc744 \uc124\uba85\ud569\ub2c8\ub2e4.<\/span><\/p>\n<p> <a href=\"https:\/\/statorials.org\/ko\/\u1112\u1162\u110b\u1163\u11bc-\u110f\u1161\u1106\u1161\u11bc\u1107\u1166\u1105\u1173\/\" target=\"_blank\" rel=\"noopener\">Seaborn\uc5d0\uc11c \uc6d0\ud615 \ucc28\ud2b8\ub97c \ub9cc\ub4dc\ub294 \ubc29\ubc95<\/a><br \/> <a href=\"https:\/\/statorials.org\/ko\/\u110a\u1175\u1107\u1169\u11ab-\u1110\u1161\u110b\u1175\u11b7\u1105\u1161\u110b\u1175\u11ab\/\" target=\"_blank\" rel=\"noopener\">Seaborn\uc5d0\uc11c \uc2dc\uacc4\uc5f4 \ub3c4\ud45c\ub97c \ub9cc\ub4dc\ub294 \ubc29\ubc95<\/a><br \/> <a href=\"https:\/\/statorials.org\/ko\/\u1106\u1165\u11af\u1110\u1175-\u1111\u1173\u11af\u1105\u1169\u11ba-\u110a\u1175\u1107\u1169\u11ab\/\" target=\"_blank\" rel=\"noopener\">\ub2e8\uc77c \uadf8\ub9bc\uc5d0 \uc5ec\ub7ec Seaborn \ud50c\ub86f\uc744 \uc0dd\uc131\ud558\ub294 \ubc29\ubc95<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>\ub2e4\uc74c \ud568\uc218\ub97c \uc0ac\uc6a9\ud558\uc5ec \ud574\uc591 \ub9c9\ub300 \uadf8\ub798\ud504\uc5d0 \uac12\uc744 \ud45c\uc2dc\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4. def show_values (axs, orient=&#8221; v &#8220;, space=.01): def _single (ax): if orient == &#8221; v &#8220;: for p in ax. patches : _x = p. get_x () + p. get_width ()\/2 _y = p. get_y () + p. get_height () + ( p.get_height ()*0.01) value [&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-2127","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>Seaborn Barplot\uc5d0 \uac12\uc744 \ud45c\uc2dc\ud558\ub294 \ubc29\ubc95(\uc608\uc81c \ud3ec\ud568) - Statorials<\/title>\n<meta name=\"description\" content=\"\uc774 \ud29c\ud1a0\ub9ac\uc5bc\uc5d0\uc11c\ub294 Seaborn\uc758 \ub9c9\ub300 \uadf8\ub798\ud504\uc5d0 \uac12\uc744 \ud45c\uc2dc\ud558\ub294 \ubc29\ubc95\uc744 \uba87 \uac00\uc9c0 \uc608\uc640 \ud568\uaed8 \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\/seaborn-barplot-\u1111\u116d\u1109\u1175-\u1100\u1161\u11b9\/\" \/>\n<meta property=\"og:locale\" content=\"ko_KR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Seaborn Barplot\uc5d0 \uac12\uc744 \ud45c\uc2dc\ud558\ub294 \ubc29\ubc95(\uc608\uc81c \ud3ec\ud568) - Statorials\" \/>\n<meta property=\"og:description\" content=\"\uc774 \ud29c\ud1a0\ub9ac\uc5bc\uc5d0\uc11c\ub294 Seaborn\uc758 \ub9c9\ub300 \uadf8\ub798\ud504\uc5d0 \uac12\uc744 \ud45c\uc2dc\ud558\ub294 \ubc29\ubc95\uc744 \uba87 \uac00\uc9c0 \uc608\uc640 \ud568\uaed8 \uc124\uba85\ud569\ub2c8\ub2e4.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/statorials.org\/ko\/seaborn-barplot-\u1111\u116d\u1109\u1175-\u1100\u1161\u11b9\/\" \/>\n<meta property=\"og:site_name\" content=\"Statorials\" \/>\n<meta property=\"article:published_time\" content=\"2023-07-23T13:57:35+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/baraffichage1.png\" \/>\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\/seaborn-barplot-%e1%84%91%e1%85%ad%e1%84%89%e1%85%b5-%e1%84%80%e1%85%a1%e1%86%b9\/\",\"url\":\"https:\/\/statorials.org\/ko\/seaborn-barplot-%e1%84%91%e1%85%ad%e1%84%89%e1%85%b5-%e1%84%80%e1%85%a1%e1%86%b9\/\",\"name\":\"Seaborn Barplot\uc5d0 \uac12\uc744 \ud45c\uc2dc\ud558\ub294 \ubc29\ubc95(\uc608\uc81c \ud3ec\ud568) - Statorials\",\"isPartOf\":{\"@id\":\"https:\/\/statorials.org\/ko\/#website\"},\"datePublished\":\"2023-07-23T13:57:35+00:00\",\"dateModified\":\"2023-07-23T13:57:35+00:00\",\"author\":{\"@id\":\"https:\/\/statorials.org\/ko\/#\/schema\/person\/600556789b7d79cbaa9d9f0c721b74f4\"},\"description\":\"\uc774 \ud29c\ud1a0\ub9ac\uc5bc\uc5d0\uc11c\ub294 Seaborn\uc758 \ub9c9\ub300 \uadf8\ub798\ud504\uc5d0 \uac12\uc744 \ud45c\uc2dc\ud558\ub294 \ubc29\ubc95\uc744 \uba87 \uac00\uc9c0 \uc608\uc640 \ud568\uaed8 \uc124\uba85\ud569\ub2c8\ub2e4.\",\"breadcrumb\":{\"@id\":\"https:\/\/statorials.org\/ko\/seaborn-barplot-%e1%84%91%e1%85%ad%e1%84%89%e1%85%b5-%e1%84%80%e1%85%a1%e1%86%b9\/#breadcrumb\"},\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/statorials.org\/ko\/seaborn-barplot-%e1%84%91%e1%85%ad%e1%84%89%e1%85%b5-%e1%84%80%e1%85%a1%e1%86%b9\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/statorials.org\/ko\/seaborn-barplot-%e1%84%91%e1%85%ad%e1%84%89%e1%85%b5-%e1%84%80%e1%85%a1%e1%86%b9\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\uc9d1\",\"item\":\"https:\/\/statorials.org\/ko\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Seaborn barplot\uc5d0 \uac12\uc744 \ud45c\uc2dc\ud558\ub294 \ubc29\ubc95(\uc608\uc81c \ud3ec\ud568)\"}]},{\"@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":"Seaborn Barplot\uc5d0 \uac12\uc744 \ud45c\uc2dc\ud558\ub294 \ubc29\ubc95(\uc608\uc81c \ud3ec\ud568) - Statorials","description":"\uc774 \ud29c\ud1a0\ub9ac\uc5bc\uc5d0\uc11c\ub294 Seaborn\uc758 \ub9c9\ub300 \uadf8\ub798\ud504\uc5d0 \uac12\uc744 \ud45c\uc2dc\ud558\ub294 \ubc29\ubc95\uc744 \uba87 \uac00\uc9c0 \uc608\uc640 \ud568\uaed8 \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\/seaborn-barplot-\u1111\u116d\u1109\u1175-\u1100\u1161\u11b9\/","og_locale":"ko_KR","og_type":"article","og_title":"Seaborn Barplot\uc5d0 \uac12\uc744 \ud45c\uc2dc\ud558\ub294 \ubc29\ubc95(\uc608\uc81c \ud3ec\ud568) - Statorials","og_description":"\uc774 \ud29c\ud1a0\ub9ac\uc5bc\uc5d0\uc11c\ub294 Seaborn\uc758 \ub9c9\ub300 \uadf8\ub798\ud504\uc5d0 \uac12\uc744 \ud45c\uc2dc\ud558\ub294 \ubc29\ubc95\uc744 \uba87 \uac00\uc9c0 \uc608\uc640 \ud568\uaed8 \uc124\uba85\ud569\ub2c8\ub2e4.","og_url":"https:\/\/statorials.org\/ko\/seaborn-barplot-\u1111\u116d\u1109\u1175-\u1100\u1161\u11b9\/","og_site_name":"Statorials","article_published_time":"2023-07-23T13:57:35+00:00","og_image":[{"url":"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/baraffichage1.png"}],"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\/seaborn-barplot-%e1%84%91%e1%85%ad%e1%84%89%e1%85%b5-%e1%84%80%e1%85%a1%e1%86%b9\/","url":"https:\/\/statorials.org\/ko\/seaborn-barplot-%e1%84%91%e1%85%ad%e1%84%89%e1%85%b5-%e1%84%80%e1%85%a1%e1%86%b9\/","name":"Seaborn Barplot\uc5d0 \uac12\uc744 \ud45c\uc2dc\ud558\ub294 \ubc29\ubc95(\uc608\uc81c \ud3ec\ud568) - Statorials","isPartOf":{"@id":"https:\/\/statorials.org\/ko\/#website"},"datePublished":"2023-07-23T13:57:35+00:00","dateModified":"2023-07-23T13:57:35+00:00","author":{"@id":"https:\/\/statorials.org\/ko\/#\/schema\/person\/600556789b7d79cbaa9d9f0c721b74f4"},"description":"\uc774 \ud29c\ud1a0\ub9ac\uc5bc\uc5d0\uc11c\ub294 Seaborn\uc758 \ub9c9\ub300 \uadf8\ub798\ud504\uc5d0 \uac12\uc744 \ud45c\uc2dc\ud558\ub294 \ubc29\ubc95\uc744 \uba87 \uac00\uc9c0 \uc608\uc640 \ud568\uaed8 \uc124\uba85\ud569\ub2c8\ub2e4.","breadcrumb":{"@id":"https:\/\/statorials.org\/ko\/seaborn-barplot-%e1%84%91%e1%85%ad%e1%84%89%e1%85%b5-%e1%84%80%e1%85%a1%e1%86%b9\/#breadcrumb"},"inLanguage":"ko-KR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/statorials.org\/ko\/seaborn-barplot-%e1%84%91%e1%85%ad%e1%84%89%e1%85%b5-%e1%84%80%e1%85%a1%e1%86%b9\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/statorials.org\/ko\/seaborn-barplot-%e1%84%91%e1%85%ad%e1%84%89%e1%85%b5-%e1%84%80%e1%85%a1%e1%86%b9\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\uc9d1","item":"https:\/\/statorials.org\/ko\/"},{"@type":"ListItem","position":2,"name":"Seaborn barplot\uc5d0 \uac12\uc744 \ud45c\uc2dc\ud558\ub294 \ubc29\ubc95(\uc608\uc81c \ud3ec\ud568)"}]},{"@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\/2127","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=2127"}],"version-history":[{"count":0,"href":"https:\/\/statorials.org\/ko\/wp-json\/wp\/v2\/posts\/2127\/revisions"}],"wp:attachment":[{"href":"https:\/\/statorials.org\/ko\/wp-json\/wp\/v2\/media?parent=2127"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/statorials.org\/ko\/wp-json\/wp\/v2\/categories?post=2127"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/statorials.org\/ko\/wp-json\/wp\/v2\/tags?post=2127"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}