{"id":2571,"date":"2023-07-21T16:28:02","date_gmt":"2023-07-21T16:28:02","guid":{"rendered":"https:\/\/statorials.org\/ko\/numpy-%e1%84%80%e1%85%ad%e1%84%83%e1%85%a2\/"},"modified":"2023-07-21T16:28:02","modified_gmt":"2023-07-21T16:28:02","slug":"numpy-%e1%84%80%e1%85%ad%e1%84%83%e1%85%a2","status":"publish","type":"post","link":"https:\/\/statorials.org\/ko\/numpy-%e1%84%80%e1%85%ad%e1%84%83%e1%85%a2\/","title":{"rendered":"Numpy \ubc30\uc5f4\uc5d0\uc11c \uc694\uc18c\ub97c \uc774\ub3d9\ud558\ub294 \ubc29\ubc95(\uc608\uc81c \ud3ec\ud568)"},"content":{"rendered":"<p><\/p>\n<hr>\n<p><span style=\"color: #000000;\">\ub2e4\uc74c \ubc29\ubc95 \uc911 \ud558\ub098\ub97c \uc0ac\uc6a9\ud558\uc5ec NumPy \ubc30\uc5f4\uc758 \uc694\uc18c\ub97c \uc624\ud504\uc14b\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4.<\/span><\/p>\n<p> <span style=\"color: #000000;\"><strong>\ubc29\ubc95 1: \uc694\uc18c \uc774\ub3d9(\ubaa8\ub4e0 \uc6d0\ub798 \uc694\uc18c \uc720\uc9c0)<\/strong><\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <strong><span style=\"color: #008080;\">#shift each element two positions to the right<\/span>\ndata_new = np. <span style=\"color: #3366ff;\">roll<\/span> (data, 2)\n<\/strong><\/pre>\n<p> <span style=\"color: #000000;\"><strong>\ubc29\ubc95 2: \uc694\uc18c \uc774\ub3d9(\uc694\uc18c \uad50\uccb4 \ud5c8\uc6a9)<\/strong><\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <span style=\"color: #000000;\"><strong><span style=\"color: #008080;\">#define shifting function<\/span>\n<span style=\"color: #008000;\">def<\/span> <span style=\"color: #3366ff;\">shift_elements<\/span> (arr, num, fill_value):\n    result = np. <span style=\"color: #3366ff;\">empty_like<\/span> (arr)\n    <span style=\"color: #008000;\">if<\/span> num &gt; 0:\n        result[:num] = fill_value\n        result[num:] = arr[:-num]\n    <span style=\"color: #008000;\">elif<\/span> num &lt; 0:\n        result[num:] = fill_value\n        result[:num] = arr[-num:]\n    <span style=\"color: #008000;\">else<\/span> :\n        result[:] = arr\n    <span style=\"color: #008000;\">return<\/span> result\n\n<span style=\"color: #008080;\">#shift each element two positions to the right (replace shifted elements with zero)\n<\/span>data_new = shift_elements(data, 2, 0)\n<\/strong><\/span><\/pre>\n<p> <span style=\"color: #000000;\">\ub2e4\uc74c \uc608\uc5d0\uc11c\ub294 \uac01 \ubc29\ubc95\uc744 \uc2e4\uc81c\ub85c \uc0ac\uc6a9\ud558\ub294 \ubc29\ubc95\uc744 \ubcf4\uc5ec\uc90d\ub2c8\ub2e4.<\/span><\/p>\n<h3> <span style=\"color: #000000;\"><strong>\ubc29\ubc95 1: \uc694\uc18c \uc774\ub3d9(\ubaa8\ub4e0 \uc6d0\ub798 \uc694\uc18c \uc720\uc9c0)<\/strong><\/span><\/h3>\n<p> <span style=\"color: #000000;\">\ub2e4\uc74c \ucf54\ub4dc\ub294 <a href=\"https:\/\/numpy.org\/doc\/stable\/reference\/generated\/numpy.roll.html\" target=\"_blank\" rel=\"noopener\">np.roll()<\/a> \ud568\uc218\ub97c \uc0ac\uc6a9\ud558\uc5ec NumPy \ubc30\uc5f4\uc758 \uac01 \uc694\uc18c\ub97c \uc624\ub978\ucabd\uc73c\ub85c \ub450 \uc704\uce58 \uc774\ub3d9\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;\">import<\/span> numpy <span style=\"color: #008000;\">as<\/span> np\n\n<span style=\"color: #008080;\">#create NumPy array\n<\/span>data = np. <span style=\"color: #3366ff;\">array<\/span> ([1, 2, 3, 4, 5, 6])\n\n<span style=\"color: #008080;\">#shift each element two positions to the right\n<\/span>data_new = np. <span style=\"color: #3366ff;\">roll<\/span> (data, 2)\n\n<span style=\"color: #008080;\">#view new NumPy array\n<\/span>data_new\n\narray([5, 6, 1, 2, 3, 4])\n<\/strong><\/pre>\n<p> <span style=\"color: #000000;\">\uac01 \uc694\uc18c\ub294 \uc624\ub978\ucabd\uc73c\ub85c \ub450 \uc704\uce58 \uc774\ub3d9\ub418\uc5c8\uc73c\uba70 \ubc30\uc5f4 \ub05d\uc5d0 \uc788\ub294 \uc694\uc18c\ub294 \ub2e8\uc21c\ud788 \uc55e\uc73c\ub85c \uc774\ub3d9\ub418\uc5c8\uc2b5\ub2c8\ub2e4.<\/span><\/p>\n<p> <span style=\"color: #000000;\"><strong>np.roll()<\/strong> \ud568\uc218\uc5d0\uc11c \uc74c\uc218\ub97c \uc0ac\uc6a9\ud558\uc5ec \uc694\uc18c\ub97c \uc67c\ucabd\uc73c\ub85c \uc774\ub3d9\ud560 \uc218\ub3c4 \uc788\uc2b5\ub2c8\ub2e4.<\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <strong><span style=\"color: #008000;\">import<\/span> numpy <span style=\"color: #008000;\">as<\/span> np\n\n<span style=\"color: #008080;\">#create NumPy array\n<\/span>data = np. <span style=\"color: #3366ff;\">array<\/span> ([1, 2, 3, 4, 5, 6])\n\n<span style=\"color: #008080;\">#shift each element three positions to the left\n<\/span>data_new = np. <span style=\"color: #3366ff;\">roll<\/span> (data, -3)\n\n<span style=\"color: #008080;\">#view new NumPy array\n<\/span>data_new\n\narray([4, 5, 6, 1, 2, 3])<\/strong><\/pre>\n<h3> <span style=\"color: #000000;\"><strong>\ubc29\ubc95 2: \uc694\uc18c \uc774\ub3d9(\uc694\uc18c \uad50\uccb4 \ud5c8\uc6a9)<\/strong><\/span><\/h3>\n<p> <span style=\"color: #000000;\">NumPy \ubc30\uc5f4\uc758 \uc694\uc18c\ub97c \uc774\ub3d9\ud558\uace0 \uc774\ub3d9\ub41c \uc694\uc18c\ub97c \ud2b9\uc815 \uac12\uc73c\ub85c \ub300\uccb4\ud558\ub294 \uc0ac\uc6a9\uc790 \uc815\uc758 \ud568\uc218\ub97c \uc815\uc758\ud560 \uc218\ub3c4 \uc788\uc2b5\ub2c8\ub2e4.<\/span><\/p>\n<p> <span style=\"color: #000000;\">\uc608\ub97c \ub4e4\uc5b4 \ub2e4\uc74c \ud568\uc218\ub97c \uc815\uc758\ud558\uc5ec \uc694\uc18c\ub97c \uc774\ub3d9\ud558\uace0 \uc774\ub3d9\ub41c \ubaa8\ub4e0 \uc694\uc18c\ub97c \uac12 0\uc73c\ub85c \ubc14\uafc0 \uc218 \uc788\uc2b5\ub2c8\ub2e4.<\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">import<\/span> numpy <span style=\"color: #008000;\">as<\/span> np\n\n<span style=\"color: #008080;\">#create NumPy array\n<\/span>data = np. <span style=\"color: #3366ff;\">array<\/span> ([1, 2, 3, 4, 5, 6])\n\n<span style=\"color: #008080;\">#define custom function to shift elements\n<\/span><span style=\"color: #008000;\">def<\/span> <span style=\"color: #3366ff;\">shift_elements<\/span> (arr, num, fill_value):\n    result = np. <span style=\"color: #3366ff;\">empty_like<\/span> (arr)\n    <span style=\"color: #008000;\">if<\/span> num &gt; 0:\n        result[:num] = fill_value\n        result[num:] = arr[:-num]\n    <span style=\"color: #008000;\">elif<\/span> num &lt; 0:\n        result[num:] = fill_value\n        result[:num] = arr[-num:]\n    <span style=\"color: #008000;\">else<\/span> :\n        result[:] = arr\n    <span style=\"color: #008000;\">return<\/span> result\n\n<span style=\"color: #008080;\">#shift each element two positions to the right and replace shifted values with zero\n<\/span>data_new = shift_elements(data, 2, 0)\n\n<span style=\"color: #008080;\">#view new NumPy array\n<\/span>data_new\n\narray([0, 0, 1, 2, 3, 4])<\/strong><\/span><\/pre>\n<p> <span style=\"color: #000000;\">\ud568\uc218\uc5d0 \uc74c\uc218\ub97c \uc0ac\uc6a9\ud558\uc5ec \uc694\uc18c\ub97c \uc67c\ucabd\uc73c\ub85c \uc774\ub3d9\ud560 \uc218\ub3c4 \uc788\uc2b5\ub2c8\ub2e4.<\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">import<\/span> numpy <span style=\"color: #008000;\">as<\/span> np\n\n<span style=\"color: #008080;\">#create NumPy array\n<\/span>data = np. <span style=\"color: #3366ff;\">array<\/span> ([1, 2, 3, 4, 5, 6])\n\n<span style=\"color: #008080;\">#define custom function to shift elements\n<\/span><span style=\"color: #008000;\">def<\/span> <span style=\"color: #3366ff;\">shift_elements<\/span> (arr, num, fill_value):\n    result = np. <span style=\"color: #3366ff;\">empty_like<\/span> (arr)\n    <span style=\"color: #008000;\">if<\/span> num &gt; 0:\n        result[:num] = fill_value\n        result[num:] = arr[:-num]\n    <span style=\"color: #008000;\">elif<\/span> num &lt; 0:\n        result[num:] = fill_value\n        result[:num] = arr[-num:]\n    <span style=\"color: #008000;\">else<\/span> :\n        result[:] = arr\n    <span style=\"color: #008000;\">return<\/span> result\n\n<span style=\"color: #008080;\">#shift each element three positions to the left and replace shifted values with 50\n<\/span>data_new = shift_elements(data, -3, 50)\n\n<span style=\"color: #008080;\">#view new NumPy array\n<\/span>data_new\n\narray([ 4, 5, 6, 50, 50, 50])<\/strong><\/span><\/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 NumPy\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\/\u1103\u1175\u110c\u1175\u1110\u1165\u11af-\u1100\u1168\u110c\u1165\u11bc\/\" target=\"_blank\" rel=\"noopener\">NumPy\uc5d0\uc11c \uc694\uc18c \ubc1c\uc0dd \ud69f\uc218\ub97c \uacc4\uc0b0\ud558\ub294 \ubc29\ubc95<\/a><br \/> <a href=\"https:\/\/statorials.org\/ko\/numpy\u1102\u1173\u11ab-\u110b\u1167\u11af\u1107\u1167\u11af\u1105\u1169-\u1107\u1162\u110b\u1167\u11af\u110b\u1173\u11af-\u110c\u1165\u11bc\u1105\u1167\u11af\u1112\u1161\u11b8\u1102\u1175\u1103\u1161.\/\" target=\"_blank\" rel=\"noopener\">NumPy \ubc30\uc5f4\uc744 \uc5f4\ubcc4\ub85c \uc815\ub82c\ud558\ub294 \ubc29\ubc95<\/a><br \/> <a href=\"https:\/\/statorials.org\/ko\/\u1103\u1175\u110c\u1175\u1110\u1165\u11af-\u1106\u1169\u1103\u1173\/\" target=\"_blank\" rel=\"noopener\">NumPy \ubc30\uc5f4\uc758 \ubaa8\ub4dc\ub97c \uacc4\uc0b0\ud558\ub294 \ubc29\ubc95<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>\ub2e4\uc74c \ubc29\ubc95 \uc911 \ud558\ub098\ub97c \uc0ac\uc6a9\ud558\uc5ec NumPy \ubc30\uc5f4\uc758 \uc694\uc18c\ub97c \uc624\ud504\uc14b\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4. \ubc29\ubc95 1: \uc694\uc18c \uc774\ub3d9(\ubaa8\ub4e0 \uc6d0\ub798 \uc694\uc18c \uc720\uc9c0) #shift each element two positions to the right data_new = np. roll (data, 2) \ubc29\ubc95 2: \uc694\uc18c \uc774\ub3d9(\uc694\uc18c \uad50\uccb4 \ud5c8\uc6a9) #define shifting function def shift_elements (arr, num, fill_value): result = np. empty_like (arr) if num &gt; 0: [&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-2571","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>NumPy \ubc30\uc5f4\uc5d0\uc11c \uc694\uc18c\ub97c \uc774\ub3d9\ud558\ub294 \ubc29\ubc95(\uc608\uc81c \ud3ec\ud568) - \ud1b5\uacc4<\/title>\n<meta name=\"description\" content=\"\uc774 \ud29c\ud1a0\ub9ac\uc5bc\uc5d0\uc11c\ub294 Python\uc5d0\uc11c \ub2e4\uc74c \uc624\ub958\ub97c \uc218\uc815\ud558\ub294 \ubc29\ubc95\uc744 \uc124\uba85\ud569\ub2c8\ub2e4. \ud0a4\uc6cc\ub4dc\uac00 \uc544\ub2cc \uc778\uc218\ub294 2\uac1c\ub9cc \ud5c8\uc6a9\ub429\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\/numpy-\u1100\u116d\u1103\u1162\/\" \/>\n<meta property=\"og:locale\" content=\"ko_KR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"NumPy \ubc30\uc5f4\uc5d0\uc11c \uc694\uc18c\ub97c \uc774\ub3d9\ud558\ub294 \ubc29\ubc95(\uc608\uc81c \ud3ec\ud568) - \ud1b5\uacc4\" \/>\n<meta property=\"og:description\" content=\"\uc774 \ud29c\ud1a0\ub9ac\uc5bc\uc5d0\uc11c\ub294 Python\uc5d0\uc11c \ub2e4\uc74c \uc624\ub958\ub97c \uc218\uc815\ud558\ub294 \ubc29\ubc95\uc744 \uc124\uba85\ud569\ub2c8\ub2e4. \ud0a4\uc6cc\ub4dc\uac00 \uc544\ub2cc \uc778\uc218\ub294 2\uac1c\ub9cc \ud5c8\uc6a9\ub429\ub2c8\ub2e4.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/statorials.org\/ko\/numpy-\u1100\u116d\u1103\u1162\/\" \/>\n<meta property=\"og:site_name\" content=\"Statorials\" \/>\n<meta property=\"article:published_time\" content=\"2023-07-21T16:28:02+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\/numpy-%e1%84%80%e1%85%ad%e1%84%83%e1%85%a2\/\",\"url\":\"https:\/\/statorials.org\/ko\/numpy-%e1%84%80%e1%85%ad%e1%84%83%e1%85%a2\/\",\"name\":\"NumPy \ubc30\uc5f4\uc5d0\uc11c \uc694\uc18c\ub97c \uc774\ub3d9\ud558\ub294 \ubc29\ubc95(\uc608\uc81c \ud3ec\ud568) - \ud1b5\uacc4\",\"isPartOf\":{\"@id\":\"https:\/\/statorials.org\/ko\/#website\"},\"datePublished\":\"2023-07-21T16:28:02+00:00\",\"dateModified\":\"2023-07-21T16:28:02+00:00\",\"author\":{\"@id\":\"https:\/\/statorials.org\/ko\/#\/schema\/person\/600556789b7d79cbaa9d9f0c721b74f4\"},\"description\":\"\uc774 \ud29c\ud1a0\ub9ac\uc5bc\uc5d0\uc11c\ub294 Python\uc5d0\uc11c \ub2e4\uc74c \uc624\ub958\ub97c \uc218\uc815\ud558\ub294 \ubc29\ubc95\uc744 \uc124\uba85\ud569\ub2c8\ub2e4. \ud0a4\uc6cc\ub4dc\uac00 \uc544\ub2cc \uc778\uc218\ub294 2\uac1c\ub9cc \ud5c8\uc6a9\ub429\ub2c8\ub2e4.\",\"breadcrumb\":{\"@id\":\"https:\/\/statorials.org\/ko\/numpy-%e1%84%80%e1%85%ad%e1%84%83%e1%85%a2\/#breadcrumb\"},\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/statorials.org\/ko\/numpy-%e1%84%80%e1%85%ad%e1%84%83%e1%85%a2\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/statorials.org\/ko\/numpy-%e1%84%80%e1%85%ad%e1%84%83%e1%85%a2\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\uc9d1\",\"item\":\"https:\/\/statorials.org\/ko\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Numpy \ubc30\uc5f4\uc5d0\uc11c \uc694\uc18c\ub97c \uc774\ub3d9\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":"NumPy \ubc30\uc5f4\uc5d0\uc11c \uc694\uc18c\ub97c \uc774\ub3d9\ud558\ub294 \ubc29\ubc95(\uc608\uc81c \ud3ec\ud568) - \ud1b5\uacc4","description":"\uc774 \ud29c\ud1a0\ub9ac\uc5bc\uc5d0\uc11c\ub294 Python\uc5d0\uc11c \ub2e4\uc74c \uc624\ub958\ub97c \uc218\uc815\ud558\ub294 \ubc29\ubc95\uc744 \uc124\uba85\ud569\ub2c8\ub2e4. \ud0a4\uc6cc\ub4dc\uac00 \uc544\ub2cc \uc778\uc218\ub294 2\uac1c\ub9cc \ud5c8\uc6a9\ub429\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\/numpy-\u1100\u116d\u1103\u1162\/","og_locale":"ko_KR","og_type":"article","og_title":"NumPy \ubc30\uc5f4\uc5d0\uc11c \uc694\uc18c\ub97c \uc774\ub3d9\ud558\ub294 \ubc29\ubc95(\uc608\uc81c \ud3ec\ud568) - \ud1b5\uacc4","og_description":"\uc774 \ud29c\ud1a0\ub9ac\uc5bc\uc5d0\uc11c\ub294 Python\uc5d0\uc11c \ub2e4\uc74c \uc624\ub958\ub97c \uc218\uc815\ud558\ub294 \ubc29\ubc95\uc744 \uc124\uba85\ud569\ub2c8\ub2e4. \ud0a4\uc6cc\ub4dc\uac00 \uc544\ub2cc \uc778\uc218\ub294 2\uac1c\ub9cc \ud5c8\uc6a9\ub429\ub2c8\ub2e4.","og_url":"https:\/\/statorials.org\/ko\/numpy-\u1100\u116d\u1103\u1162\/","og_site_name":"Statorials","article_published_time":"2023-07-21T16:28:02+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\/numpy-%e1%84%80%e1%85%ad%e1%84%83%e1%85%a2\/","url":"https:\/\/statorials.org\/ko\/numpy-%e1%84%80%e1%85%ad%e1%84%83%e1%85%a2\/","name":"NumPy \ubc30\uc5f4\uc5d0\uc11c \uc694\uc18c\ub97c \uc774\ub3d9\ud558\ub294 \ubc29\ubc95(\uc608\uc81c \ud3ec\ud568) - \ud1b5\uacc4","isPartOf":{"@id":"https:\/\/statorials.org\/ko\/#website"},"datePublished":"2023-07-21T16:28:02+00:00","dateModified":"2023-07-21T16:28:02+00:00","author":{"@id":"https:\/\/statorials.org\/ko\/#\/schema\/person\/600556789b7d79cbaa9d9f0c721b74f4"},"description":"\uc774 \ud29c\ud1a0\ub9ac\uc5bc\uc5d0\uc11c\ub294 Python\uc5d0\uc11c \ub2e4\uc74c \uc624\ub958\ub97c \uc218\uc815\ud558\ub294 \ubc29\ubc95\uc744 \uc124\uba85\ud569\ub2c8\ub2e4. \ud0a4\uc6cc\ub4dc\uac00 \uc544\ub2cc \uc778\uc218\ub294 2\uac1c\ub9cc \ud5c8\uc6a9\ub429\ub2c8\ub2e4.","breadcrumb":{"@id":"https:\/\/statorials.org\/ko\/numpy-%e1%84%80%e1%85%ad%e1%84%83%e1%85%a2\/#breadcrumb"},"inLanguage":"ko-KR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/statorials.org\/ko\/numpy-%e1%84%80%e1%85%ad%e1%84%83%e1%85%a2\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/statorials.org\/ko\/numpy-%e1%84%80%e1%85%ad%e1%84%83%e1%85%a2\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\uc9d1","item":"https:\/\/statorials.org\/ko\/"},{"@type":"ListItem","position":2,"name":"Numpy \ubc30\uc5f4\uc5d0\uc11c \uc694\uc18c\ub97c \uc774\ub3d9\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\/2571","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=2571"}],"version-history":[{"count":0,"href":"https:\/\/statorials.org\/ko\/wp-json\/wp\/v2\/posts\/2571\/revisions"}],"wp:attachment":[{"href":"https:\/\/statorials.org\/ko\/wp-json\/wp\/v2\/media?parent=2571"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/statorials.org\/ko\/wp-json\/wp\/v2\/categories?post=2571"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/statorials.org\/ko\/wp-json\/wp\/v2\/tags?post=2571"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}