{"id":1184,"date":"2023-07-27T08:57:53","date_gmt":"2023-07-27T08:57:53","guid":{"rendered":"https:\/\/statorials.org\/ko\/%e1%84%8b%e1%85%af%e1%86%ab-matplotlib\/"},"modified":"2023-07-27T08:57:53","modified_gmt":"2023-07-27T08:57:53","slug":"%e1%84%8b%e1%85%af%e1%86%ab-matplotlib","status":"publish","type":"post","link":"https:\/\/statorials.org\/ko\/%e1%84%8b%e1%85%af%e1%86%ab-matplotlib\/","title":{"rendered":"Matplotlib\uc5d0\uc11c \uc6d0\uc744 \uadf8\ub9ac\ub294 \ubc29\ubc95(\uc608\uc81c \ud3ec\ud568)"},"content":{"rendered":"<p><\/p>\n<hr>\n<p><span style=\"color: #000000;\">\ub2e4\uc74c \uad6c\ubb38\uc744 \uc0ac\uc6a9\ud558\ub294 <a href=\"https:\/\/matplotlib.org\/stable\/api\/_as_gen\/matplotlib.patches.Circle.html\" target=\"_blank\" rel=\"noopener\">Circle()<\/a> \ud568\uc218\ub97c \uc0ac\uc6a9\ud558\uc5ec Matplotlib\uc758 \ud50c\ub86f\uc5d0 \uc6d0\uc744 \ube60\ub974\uac8c \ucd94\uac00\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4.<\/span><\/p>\n<p> <span style=\"color: #000000;\"><strong>matplotlib.patches.Circle(xy, \ubc18\uacbd=5)<\/strong><\/span><\/p>\n<p> <span style=\"color: #000000;\">\uae08:<\/span><\/p>\n<ul>\n<li> <span style=\"color: #000000;\"><strong>xy :<\/strong> \uc6d0\uc758 \uc88c\ud45c (x, y)<\/span><\/li>\n<li> <span style=\"color: #000000;\"><strong>\ubc18\uacbd:<\/strong> \uc6d0\uc758 \ubc18\uacbd. \uae30\ubcf8\uac12\uc740 5\uc785\ub2c8\ub2e4.<\/span><\/li>\n<\/ul>\n<p> <span style=\"color: #000000;\">\uc774 \ud29c\ud1a0\ub9ac\uc5bc\uc5d0\uc11c\ub294 \uc774 \uae30\ub2a5\uc758 \uc2e4\uc81c \uc0ac\uc6a9\uc5d0 \ub300\ud55c \uba87 \uac00\uc9c0 \uc608\ub97c \ubcf4\uc5ec\uc90d\ub2c8\ub2e4.<\/span><\/p>\n<h3> <span style=\"color: #000000;\"><strong>\uc608 1: \ub2e8\uc77c \uc6d0 \ub9cc\ub4e4\uae30<\/strong><\/span><\/h3>\n<p> <span style=\"color: #000000;\">\ub2e4\uc74c \ucf54\ub4dc\ub294 \uc88c\ud45c (x,y)(10,10)\uc5d0 \uc704\uce58\ud55c Matplotlib \ud50c\ub86f\uc5d0 \ub2e8\uc77c \uc6d0\uc744 \ub9cc\ub4dc\ub294 \ubc29\ubc95\uc744 \ubcf4\uc5ec\uc90d\ub2c8\ub2e4.<\/span> <\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <strong><span style=\"color: #107d3f;\">import<\/span> matplotlib. <span style=\"color: #3366ff;\">pyplot<\/span> <span style=\"color: #107d3f;\">as<\/span> plt\n\n<span style=\"color: #008080;\">#set axis limits of plot (x=0 to 20, y=0 to 20)\n<\/span>plt. <span style=\"color: #3366ff;\">axis<\/span> ([0, 20, 0, 20])\n\n<span style=\"color: #008080;\">#create circle with (x, y) coordinates at (10, 10)\n<\/span>c=plt. <span style=\"color: #3366ff;\">Circle<\/span> ((10, 10))\n\n<span style=\"color: #008080;\">#add circle to plot (gca means \"get current axis\")\n<\/span>plt. <span style=\"color: #3366ff;\">gca<\/span> (). <span style=\"color: #3366ff;\">add_artist<\/span> (c)\n<\/strong><\/pre>\n<p><img decoding=\"async\" loading=\"lazy\" class=\"aligncenter wp-image-11794 \" src=\"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/cercle1.png\" alt=\"matplotlib\uc758 \uc6d0\" width=\"412\" height=\"268\" srcset=\"\" sizes=\"auto, \"><\/p>\n<p> <span style=\"color: #000000;\">\uae30\ubcf8\uc801\uc73c\ub85c Matplotlib \ud50c\ub86f\uc758 \ucd95\uc740 \uc77c\ubc18\uc801\uc73c\ub85c \ub370\uc774\ud130 \ub2e8\uc704\ub2f9 \ub354 \ub9ce\uc740 \ud53d\uc140\uc744 \ud45c\uc2dc\ud569\ub2c8\ub2e4. \uc6d0\uc744 \ud0c0\uc6d0 \ub300\uc2e0 \uc6d0\uc73c\ub85c \ud45c\uc2dc\ud558\ub824\uba74 \ub2e4\uc74c\uacfc \uac19\uc774 <strong>plt.axis(&#8220;equal&#8221;)<\/strong> \uc778\uc218\ub97c \uc0ac\uc6a9\ud574\uc57c \ud569\ub2c8\ub2e4.<\/span> <\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <strong><span style=\"color: #107d3f;\">import<\/span> matplotlib. <span style=\"color: #3366ff;\">pyplot<\/span> <span style=\"color: #107d3f;\">as<\/span> plt\n\n<span style=\"color: #008080;\">#set axis limits of plot (x=0 to 20, y=0 to 20)\n<\/span>plt. <span style=\"color: #3366ff;\">axis<\/span> ([0, 20, 0, 20])\nplt. <span style=\"color: #3366ff;\">axis<\/span> (\" <span style=\"color: #008000;\">equal<\/span> \")\n\n<span style=\"color: #008080;\">#create circle with (x, y) coordinates at (10, 10)\n<\/span>c=plt. <span style=\"color: #3366ff;\">Circle<\/span> ((10, 10))\n\n<span style=\"color: #008080;\">#add circle to plot (gca means \"get current axis\")\n<\/span>plt. <span style=\"color: #3366ff;\">gca<\/span> (). <span style=\"color: #3366ff;\">add_artist<\/span> (c)<\/strong> <\/pre>\n<p><img decoding=\"async\" loading=\"lazy\" class=\"aligncenter wp-image-11795 \" src=\"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/cercle2.png\" alt=\"matplotlib \uc11c\ud074\" width=\"387\" height=\"266\" srcset=\"\" sizes=\"auto, \"><\/p>\n<h3> <span style=\"color: #000000;\"><strong>\uc608 2:<\/strong><\/span> <span style=\"color: #000000;\"><strong>\uc5ec\ub7ec \uac1c\uc758 \uc6d0<\/strong><\/span> \ub9cc\ub4e4\uae30<\/h3>\n<p> <span style=\"color: #000000;\">\ub2e4\uc74c \ucf54\ub4dc\ub294 Matplotlib \ud50c\ub86f\uc5d0 \uc5ec\ub7ec \uc6d0\uc744 \ub9cc\ub4dc\ub294 \ubc29\ubc95\uc744 \ubcf4\uc5ec\uc90d\ub2c8\ub2e4.<\/span> <\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <strong><span style=\"color: #107d3f;\">import<\/span> matplotlib. <span style=\"color: #3366ff;\">pyplot<\/span> <span style=\"color: #107d3f;\">as<\/span> plt\n\n<span style=\"color: #008080;\">#set axis limits of plot (x=0 to 20, y=0 to 20)\n<\/span>plt. <span style=\"color: #3366ff;\">axis<\/span> ([0, 20, 0, 20])\nplt. <span style=\"color: #3366ff;\">axis<\/span> (\" <span style=\"color: #008000;\">equal<\/span> \")\n\n<span style=\"color: #008080;\">#define circles\n<\/span>c1=plt. <span style=\"color: #3366ff;\">Circle<\/span> ((5, 5), radius= <span style=\"color: #008000;\">1<\/span> )\nc2=plt. <span style=\"color: #3366ff;\">Circle<\/span> ((10, 10), radius= <span style=\"color: #008000;\">2<\/span> )\nc3=plt. <span style=\"color: #3366ff;\">Circle<\/span> ((15, 13), radius= <span style=\"color: #008000;\">3<\/span> )\n\n<span style=\"color: #008080;\">#add circles to plot\n<\/span>plt. <span style=\"color: #3366ff;\">gca<\/span> (). <span style=\"color: #3366ff;\">add_artist<\/span> (c1)\nplt. <span style=\"color: #3366ff;\">gca<\/span> (). <span style=\"color: #3366ff;\">add_artist<\/span> (c2)\nplt. <span style=\"color: #3366ff;\">gca<\/span> (). <span style=\"color: #3366ff;\">add_artist<\/span> (c3)\n<\/strong><\/pre>\n<p><img decoding=\"async\" loading=\"lazy\" class=\"aligncenter wp-image-11796 \" src=\"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/cercle3.png\" alt=\"Matplotlib\uc758 \uc5ec\ub7ec \uc6d0\" width=\"392\" height=\"263\" srcset=\"\" sizes=\"auto, \"><\/p>\n<h3> <span style=\"color: #000000;\"><strong>\uc608 3: \uc6d0 \ubaa8\uc591 \ubcc0\uacbd<\/strong><\/span><\/h3>\n<p> <span style=\"color: #000000;\">Matplotlib\uc5d0\uc11c \uc6d0\uc758 \ubaa8\uc591\uc744 \ubcc0\uacbd\ud558\ub824\uba74 \ub2e4\uc74c \uc778\uc218\ub97c \uc0ac\uc6a9\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4.<\/span><\/p>\n<ul>\n<li> <span style=\"color: #000000;\"><strong>radius:<\/strong> \uc6d0\uc758 \ubc18\uc9c0\ub984\uc744 \uc9c0\uc815\ud569\ub2c8\ub2e4.<\/span><\/li>\n<li> <span style=\"color: #000000;\"><strong>\uc0c9\uc0c1:<\/strong> \uc6d0\uc758 \uc0c9\uc0c1\uc744 \uc9c0\uc815\ud569\ub2c8\ub2e4.<\/span><\/li>\n<li> <span style=\"color: #000000;\"><strong>\uc54c\ud30c:<\/strong> \uc6d0\uc758 \ud22c\uba85\ub3c4\ub97c \uc9c0\uc815\ud569\ub2c8\ub2e4.<\/span><\/li>\n<\/ul>\n<p> <span style=\"color: #000000;\">\ub2e4\uc74c \ucf54\ub4dc\ub294 \uc774\ub7ec\ud55c \uc5ec\ub7ec \uc778\uc218\ub97c \ud55c \ubc88\uc5d0 \uc0ac\uc6a9\ud558\ub294 \ubc29\ubc95\uc758 \uc608\ub97c \ubcf4\uc5ec\uc90d\ub2c8\ub2e4.<\/span> <\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <strong><span style=\"color: #107d3f;\">import<\/span> matplotlib. <span style=\"color: #3366ff;\">pyplot<\/span> <span style=\"color: #107d3f;\">as<\/span> plt\n\n<span style=\"color: #008080;\">#set axis limits of plot (x=0 to 20, y=0 to 20)\n<\/span>plt. <span style=\"color: #3366ff;\">axis<\/span> ([0, 20, 0, 20])\nplt. <span style=\"color: #3366ff;\">axis<\/span> (\" <span style=\"color: #008000;\">equal<\/span> \")\n\n<span style=\"color: #008080;\">#create circle with (x, y) coordinates at (10, 10)\n<\/span>c=plt. <span style=\"color: #3366ff;\">Circle<\/span> ((10, 10), radius= <span style=\"color: #008000;\">2<\/span> , color=' <span style=\"color: #008000;\">red<\/span> ', alpha= <span style=\"color: #008000;\">.3<\/span> )\n\n<span style=\"color: #008080;\">#add circle to plot (gca means \"get current axis\")\n<\/span>plt. <span style=\"color: #3366ff;\">gca<\/span> (). <span style=\"color: #3366ff;\">add_artist<\/span> (c)<\/strong> <\/pre>\n<p><img decoding=\"async\" loading=\"lazy\" class=\"aligncenter wp-image-11798 \" src=\"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/cercle4.png\" alt=\"Matplotlib\uc758 \uc54c\ud30c\uac00 \uc788\ub294 \uc6d0\" width=\"403\" height=\"269\" srcset=\"\" sizes=\"auto, \"><\/p>\n<p> <span style=\"color: #000000;\">\uc0ac\uc6a9\uc790 \uc815\uc758 16\uc9c4\uc218 \uc0c9\uc0c1 \ucf54\ub4dc\ub97c \uc0ac\uc6a9\ud558\uc5ec \uc6d0\uc758 \uc0c9\uc0c1\uc744 \uc9c0\uc815\ud560 \uc218\ub3c4 \uc788\uc2b5\ub2c8\ub2e4.<\/span><\/p>\n","protected":false},"excerpt":{"rendered":"<p>\ub2e4\uc74c \uad6c\ubb38\uc744 \uc0ac\uc6a9\ud558\ub294 Circle() \ud568\uc218\ub97c \uc0ac\uc6a9\ud558\uc5ec Matplotlib\uc758 \ud50c\ub86f\uc5d0 \uc6d0\uc744 \ube60\ub974\uac8c \ucd94\uac00\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4. matplotlib.patches.Circle(xy, \ubc18\uacbd=5) \uae08: xy : \uc6d0\uc758 \uc88c\ud45c (x, y) \ubc18\uacbd: \uc6d0\uc758 \ubc18\uacbd. \uae30\ubcf8\uac12\uc740 5\uc785\ub2c8\ub2e4. \uc774 \ud29c\ud1a0\ub9ac\uc5bc\uc5d0\uc11c\ub294 \uc774 \uae30\ub2a5\uc758 \uc2e4\uc81c \uc0ac\uc6a9\uc5d0 \ub300\ud55c \uba87 \uac00\uc9c0 \uc608\ub97c \ubcf4\uc5ec\uc90d\ub2c8\ub2e4. \uc608 1: \ub2e8\uc77c \uc6d0 \ub9cc\ub4e4\uae30 \ub2e4\uc74c \ucf54\ub4dc\ub294 \uc88c\ud45c (x,y)(10,10)\uc5d0 \uc704\uce58\ud55c Matplotlib \ud50c\ub86f\uc5d0 \ub2e8\uc77c \uc6d0\uc744 \ub9cc\ub4dc\ub294 \ubc29\ubc95\uc744 \ubcf4\uc5ec\uc90d\ub2c8\ub2e4. [&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-1184","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>Matplotlib\uc5d0\uc11c \uc6d0\uc744 \uadf8\ub9ac\ub294 \ubc29\ubc95(\uc608\uc81c \ud3ec\ud568) - \ud1b5\uacc4\ud559<\/title>\n<meta name=\"description\" content=\"\uc774 \ud29c\ud1a0\ub9ac\uc5bc\uc5d0\uc11c\ub294 \uba87 \uac00\uc9c0 \uc608\ub97c \ud1b5\ud574 Matplotlib\uc5d0\uc11c \uc6d0\uc744 \uadf8\ub9ac\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\/\u110b\u116f\u11ab-matplotlib\/\" \/>\n<meta property=\"og:locale\" content=\"ko_KR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Matplotlib\uc5d0\uc11c \uc6d0\uc744 \uadf8\ub9ac\ub294 \ubc29\ubc95(\uc608\uc81c \ud3ec\ud568) - \ud1b5\uacc4\ud559\" \/>\n<meta property=\"og:description\" content=\"\uc774 \ud29c\ud1a0\ub9ac\uc5bc\uc5d0\uc11c\ub294 \uba87 \uac00\uc9c0 \uc608\ub97c \ud1b5\ud574 Matplotlib\uc5d0\uc11c \uc6d0\uc744 \uadf8\ub9ac\ub294 \ubc29\ubc95\uc744 \uc124\uba85\ud569\ub2c8\ub2e4.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/statorials.org\/ko\/\u110b\u116f\u11ab-matplotlib\/\" \/>\n<meta property=\"og:site_name\" content=\"Statorials\" \/>\n<meta property=\"article:published_time\" content=\"2023-07-27T08:57:53+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/cercle1.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\/%e1%84%8b%e1%85%af%e1%86%ab-matplotlib\/\",\"url\":\"https:\/\/statorials.org\/ko\/%e1%84%8b%e1%85%af%e1%86%ab-matplotlib\/\",\"name\":\"Matplotlib\uc5d0\uc11c \uc6d0\uc744 \uadf8\ub9ac\ub294 \ubc29\ubc95(\uc608\uc81c \ud3ec\ud568) - \ud1b5\uacc4\ud559\",\"isPartOf\":{\"@id\":\"https:\/\/statorials.org\/ko\/#website\"},\"datePublished\":\"2023-07-27T08:57:53+00:00\",\"dateModified\":\"2023-07-27T08:57:53+00:00\",\"author\":{\"@id\":\"https:\/\/statorials.org\/ko\/#\/schema\/person\/600556789b7d79cbaa9d9f0c721b74f4\"},\"description\":\"\uc774 \ud29c\ud1a0\ub9ac\uc5bc\uc5d0\uc11c\ub294 \uba87 \uac00\uc9c0 \uc608\ub97c \ud1b5\ud574 Matplotlib\uc5d0\uc11c \uc6d0\uc744 \uadf8\ub9ac\ub294 \ubc29\ubc95\uc744 \uc124\uba85\ud569\ub2c8\ub2e4.\",\"breadcrumb\":{\"@id\":\"https:\/\/statorials.org\/ko\/%e1%84%8b%e1%85%af%e1%86%ab-matplotlib\/#breadcrumb\"},\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/statorials.org\/ko\/%e1%84%8b%e1%85%af%e1%86%ab-matplotlib\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/statorials.org\/ko\/%e1%84%8b%e1%85%af%e1%86%ab-matplotlib\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\uc9d1\",\"item\":\"https:\/\/statorials.org\/ko\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Matplotlib\uc5d0\uc11c \uc6d0\uc744 \uadf8\ub9ac\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":"Matplotlib\uc5d0\uc11c \uc6d0\uc744 \uadf8\ub9ac\ub294 \ubc29\ubc95(\uc608\uc81c \ud3ec\ud568) - \ud1b5\uacc4\ud559","description":"\uc774 \ud29c\ud1a0\ub9ac\uc5bc\uc5d0\uc11c\ub294 \uba87 \uac00\uc9c0 \uc608\ub97c \ud1b5\ud574 Matplotlib\uc5d0\uc11c \uc6d0\uc744 \uadf8\ub9ac\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\/\u110b\u116f\u11ab-matplotlib\/","og_locale":"ko_KR","og_type":"article","og_title":"Matplotlib\uc5d0\uc11c \uc6d0\uc744 \uadf8\ub9ac\ub294 \ubc29\ubc95(\uc608\uc81c \ud3ec\ud568) - \ud1b5\uacc4\ud559","og_description":"\uc774 \ud29c\ud1a0\ub9ac\uc5bc\uc5d0\uc11c\ub294 \uba87 \uac00\uc9c0 \uc608\ub97c \ud1b5\ud574 Matplotlib\uc5d0\uc11c \uc6d0\uc744 \uadf8\ub9ac\ub294 \ubc29\ubc95\uc744 \uc124\uba85\ud569\ub2c8\ub2e4.","og_url":"https:\/\/statorials.org\/ko\/\u110b\u116f\u11ab-matplotlib\/","og_site_name":"Statorials","article_published_time":"2023-07-27T08:57:53+00:00","og_image":[{"url":"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/cercle1.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\/%e1%84%8b%e1%85%af%e1%86%ab-matplotlib\/","url":"https:\/\/statorials.org\/ko\/%e1%84%8b%e1%85%af%e1%86%ab-matplotlib\/","name":"Matplotlib\uc5d0\uc11c \uc6d0\uc744 \uadf8\ub9ac\ub294 \ubc29\ubc95(\uc608\uc81c \ud3ec\ud568) - \ud1b5\uacc4\ud559","isPartOf":{"@id":"https:\/\/statorials.org\/ko\/#website"},"datePublished":"2023-07-27T08:57:53+00:00","dateModified":"2023-07-27T08:57:53+00:00","author":{"@id":"https:\/\/statorials.org\/ko\/#\/schema\/person\/600556789b7d79cbaa9d9f0c721b74f4"},"description":"\uc774 \ud29c\ud1a0\ub9ac\uc5bc\uc5d0\uc11c\ub294 \uba87 \uac00\uc9c0 \uc608\ub97c \ud1b5\ud574 Matplotlib\uc5d0\uc11c \uc6d0\uc744 \uadf8\ub9ac\ub294 \ubc29\ubc95\uc744 \uc124\uba85\ud569\ub2c8\ub2e4.","breadcrumb":{"@id":"https:\/\/statorials.org\/ko\/%e1%84%8b%e1%85%af%e1%86%ab-matplotlib\/#breadcrumb"},"inLanguage":"ko-KR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/statorials.org\/ko\/%e1%84%8b%e1%85%af%e1%86%ab-matplotlib\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/statorials.org\/ko\/%e1%84%8b%e1%85%af%e1%86%ab-matplotlib\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\uc9d1","item":"https:\/\/statorials.org\/ko\/"},{"@type":"ListItem","position":2,"name":"Matplotlib\uc5d0\uc11c \uc6d0\uc744 \uadf8\ub9ac\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\/1184","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=1184"}],"version-history":[{"count":0,"href":"https:\/\/statorials.org\/ko\/wp-json\/wp\/v2\/posts\/1184\/revisions"}],"wp:attachment":[{"href":"https:\/\/statorials.org\/ko\/wp-json\/wp\/v2\/media?parent=1184"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/statorials.org\/ko\/wp-json\/wp\/v2\/categories?post=1184"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/statorials.org\/ko\/wp-json\/wp\/v2\/tags?post=1184"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}