{"id":1189,"date":"2023-07-27T08:38:01","date_gmt":"2023-07-27T08:38:01","guid":{"rendered":"https:\/\/statorials.org\/hi\/matplotlib-%e0%a4%a4%e0%a5%80%e0%a4%b0\/"},"modified":"2023-07-27T08:38:01","modified_gmt":"2023-07-27T08:38:01","slug":"matplotlib-%e0%a4%a4%e0%a5%80%e0%a4%b0","status":"publish","type":"post","link":"https:\/\/statorials.org\/hi\/matplotlib-%e0%a4%a4%e0%a5%80%e0%a4%b0\/","title":{"rendered":"\u092e\u0948\u091f\u092a\u094d\u0932\u094b\u091f\u0932\u093f\u092c \u092e\u0947\u0902 \u0924\u0940\u0930 \u0915\u0948\u0938\u0947 \u092c\u0928\u093e\u090f\u0902"},"content":{"rendered":"<p><\/p>\n<hr>\n<p><span style=\"color: #000000;\">Matplotlib \u092e\u0947\u0902 \u0924\u0940\u0930 \u0916\u0940\u0902\u091a\u0928\u0947 \u0915\u0947 \u0932\u093f\u090f, \u0906\u092a<\/span> <a href=\"https:\/\/matplotlib.org\/api\/_as_gen\/matplotlib.pyplot.arrow.html\" target=\"_blank\" rel=\"noopener noreferrer\">matplotlib.pyplot.row<\/a> \u092b\u093c\u0902\u0915\u094d\u0936\u0928 \u0915\u093e \u0909\u092a\u092f\u094b\u0917 \u0915\u0930 \u0938\u0915\u0924\u0947 \u0939\u0948\u0902 <span style=\"color: #000000;\">, \u091c\u094b \u0928\u093f\u092e\u094d\u0928\u0932\u093f\u0916\u093f\u0924 \u0938\u093f\u0902\u091f\u0948\u0915\u094d\u0938 \u0915\u093e \u0909\u092a\u092f\u094b\u0917 \u0915\u0930\u0924\u093e \u0939\u0948:<\/span><\/p>\n<p> <span style=\"color: #000000;\"><strong>matplotlib.pyplot.error(x, y, dx, dy)<\/strong><\/span><\/p>\n<p> <span style=\"color: #000000;\">\u0938\u094b\u0928\u093e:<\/span><\/p>\n<ul>\n<li> <span style=\"color: #000000;\"><strong>x, y:<\/strong> \u0924\u0940\u0930 \u0915\u0947 \u0906\u0927\u093e\u0930 \u0915\u0947 x \u0914\u0930 y \u0928\u093f\u0930\u094d\u0926\u0947\u0936\u093e\u0902\u0915<\/span><\/li>\n<li> <span style=\"color: #000000;\"><strong>dx, dy:<\/strong> x \u0914\u0930 y \u0926\u093f\u0936\u093e\u0913\u0902 \u092e\u0947\u0902 \u0924\u0940\u0930 \u0915\u0940 \u0932\u0902\u092c\u093e\u0908<\/span><\/li>\n<\/ul>\n<p> <span style=\"color: #000000;\">\u092f\u0939 \u091f\u094d\u092f\u0942\u091f\u094b\u0930\u093f\u092f\u0932 \u0907\u0938 \u092b\u093c\u0902\u0915\u094d\u0936\u0928 \u0915\u0947 \u0935\u094d\u092f\u093e\u0935\u0939\u093e\u0930\u093f\u0915 \u0909\u092a\u092f\u094b\u0917 \u0915\u0947 \u0915\u0908 \u0909\u0926\u093e\u0939\u0930\u0923 \u092a\u094d\u0930\u0926\u093e\u0928 \u0915\u0930\u0924\u093e \u0939\u0948\u0964<\/span><\/p>\n<h3> <span style=\"color: #000000;\"><strong>\u0909\u0926\u093e\u0939\u0930\u0923 1: \u090f\u0915 \u0924\u0940\u0930 \u0916\u0940\u0902\u091a\u0947\u0902<\/strong><\/span><\/h3>\n<p> <span style=\"color: #000000;\">\u0928\u093f\u092e\u094d\u0928\u0932\u093f\u0916\u093f\u0924 \u0915\u094b\u0921 \u0926\u093f\u0916\u093e\u0924\u093e \u0939\u0948 \u0915\u093f Matplotlib \u092a\u094d\u0932\u0949\u091f \u092a\u0930 \u090f\u0915\u0932 \u0924\u0940\u0930 \u0915\u0948\u0938\u0947 \u092c\u0928\u093e\u092f\u093e \u091c\u093e\u090f:<\/span> <\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <strong><span style=\"color: #008000;\">import<\/span> matplotlib. <span style=\"color: #3366ff;\">pyplot<\/span> <span style=\"color: #008000;\">as<\/span> plt\n\n<span style=\"color: #008080;\">#define two arrays for plotting\n<\/span>A = [3, 5, 5, 6, 7, 8]\nB = [12, 14, 17, 20, 22, 27]\n\n<span style=\"color: #008080;\">#create scatterplot, specifying marker size to be 40\n<\/span>plt. <span style=\"color: #3366ff;\">scatter<\/span> (A, B, s= <span style=\"color: #008000;\">40<\/span> )\n\n<span style=\"color: #008080;\">#add arrow to plot\n<\/span>plt. <span style=\"color: #3366ff;\">arrow<\/span> (x= <span style=\"color: #008000;\">4<\/span> , y= <span style=\"color: #008000;\">18<\/span> , dx= <span style=\"color: #008000;\">2<\/span> , dy= <span style=\"color: #008000;\">5<\/span> , width= <span style=\"color: #008000;\">.08<\/span> ) \n  \n<span style=\"color: #008080;\">#displayplot \n<\/span>plt. <span style=\"color: #3366ff;\">show<\/span> ()\n<\/strong><\/pre>\n<p><img decoding=\"async\" loading=\"lazy\" class=\"aligncenter wp-image-11827 \" src=\"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/fleche1.png\" alt=\"matplotlib \u092a\u094d\u0932\u0949\u091f \u092e\u0947\u0902 \u0924\u0940\u0930\" width=\"409\" height=\"274\" srcset=\"\" sizes=\"auto, \"><\/p>\n<p> <span style=\"color: #000000;\">\u0927\u094d\u092f\u093e\u0928 \u0926\u0947\u0902 \u0915\u093f \u0939\u092e \u090a\u0930\u094d\u0927\u094d\u0935\u093e\u0927\u0930 \u0924\u0940\u0930 \u092c\u0928\u093e\u0928\u0947 \u0915\u0947 \u0932\u093f\u090f <strong>dx=0<\/strong> \u0914\u0930 \u0915\u094d\u0937\u0948\u0924\u093f\u091c \u0924\u0940\u0930 \u092c\u0928\u093e\u0928\u0947 \u0915\u0947 \u0932\u093f\u090f <strong>dy=0<\/strong> \u0938\u0947\u091f \u0915\u0930 \u0938\u0915\u0924\u0947 \u0939\u0948\u0902\u0964<\/span><\/p>\n<p> <span style=\"color: #000000;\">\u0909\u0926\u093e\u0939\u0930\u0923 \u0915\u0947 \u0932\u093f\u090f, \u092f\u0939\u093e\u0902 \u0932\u0902\u092c\u0935\u0924 \u0924\u0940\u0930 \u092c\u0928\u093e\u0928\u0947 \u0915\u093e \u0924\u0930\u0940\u0915\u093e \u092c\u0924\u093e\u092f\u093e \u0917\u092f\u093e \u0939\u0948:<\/span> <\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <strong><span style=\"color: #008000;\">import<\/span> matplotlib. <span style=\"color: #3366ff;\">pyplot<\/span> <span style=\"color: #008000;\">as<\/span> plt\n\n<span style=\"color: #008080;\">#define two arrays for plotting\n<\/span>A = [3, 5, 5, 6, 7, 8]\nB = [12, 14, 17, 20, 22, 27]\n\n<span style=\"color: #008080;\">#create scatterplot, specifying marker size to be 40\n<\/span>plt. <span style=\"color: #3366ff;\">scatter<\/span> (A, B, s= <span style=\"color: #008000;\">40<\/span> )\n\n<span style=\"color: #008080;\">#add arrow to plot\n<\/span>plt. <span style=\"color: #3366ff;\">arrow<\/span> (x= <span style=\"color: #008000;\">4<\/span> , y= <span style=\"color: #008000;\">18<\/span> , dx= <span style=\"color: #008000;\">0<\/span> , dy= <span style=\"color: #008000;\">5<\/span> , width= <span style=\"color: #008000;\">.08<\/span> ) \n  \n<span style=\"color: #008080;\">#displayplot \n<\/span>plt. <span style=\"color: #3366ff;\">show<\/span> ()<\/strong> <\/pre>\n<p><img decoding=\"async\" loading=\"lazy\" class=\"aligncenter wp-image-11828 \" src=\"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/fleche2.png\" alt=\"matplotlib \u092e\u0947\u0902 \u0932\u0902\u092c\u0935\u0924 \u0924\u0940\u0930\" width=\"407\" height=\"263\" srcset=\"\" sizes=\"auto, \"><\/p>\n<h3> <span style=\"color: #000000;\"><strong>\u0909\u0926\u093e\u0939\u0930\u0923 2: \u090f\u0915 \u0924\u0940\u0930 \u0915\u094b \u0938\u094d\u091f\u093e\u0907\u0932 \u0915\u0930\u0928\u093e<\/strong><\/span><\/h3>\n<p> <span style=\"color: #000000;\">\u0921\u093f\u092b\u093c\u0949\u0932\u094d\u091f \u0930\u0942\u092a \u0938\u0947, \u092e\u0948\u091f\u092a\u094d\u0932\u094b\u091f\u0932\u093f\u092c \u092e\u0947\u0902 \u090f\u0915 \u0924\u0940\u0930 \u0915\u093e\u0932\u0947 \u0915\u093f\u0928\u093e\u0930\u094b\u0902 \u0915\u0947 \u0938\u093e\u0925 \u0928\u0940\u0932\u093e \u0939\u094b\u0924\u093e \u0939\u0948 \u0932\u0947\u0915\u093f\u0928 \u0939\u092e <strong>\u092b\u0947\u0938\u0915\u0932\u0930<\/strong> \u0914\u0930 <strong>\u090f\u091c\u0915\u0932\u0930<\/strong> \u0924\u0930\u094d\u0915\u094b\u0902 \u0915\u093e \u0909\u092a\u092f\u094b\u0917 \u0915\u0930\u0915\u0947 \u0907\u0938\u0947 \u0906\u0938\u093e\u0928\u0940 \u0938\u0947 \u092c\u0926\u0932 \u0938\u0915\u0924\u0947 \u0939\u0948\u0902:<\/span> <\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <strong><span style=\"color: #008000;\">import<\/span> matplotlib. <span style=\"color: #3366ff;\">pyplot<\/span> <span style=\"color: #008000;\">as<\/span> plt\n\n<span style=\"color: #008080;\">#define two arrays for plotting\n<\/span>A = [3, 5, 5, 6, 7, 8]\nB = [12, 14, 17, 20, 22, 27]\n\n<span style=\"color: #008080;\">#create scatterplot, specifying marker size to be 40\n<\/span>plt. <span style=\"color: #3366ff;\">scatter<\/span> (A, B, s= <span style=\"color: #008000;\">40<\/span> )\n\n<span style=\"color: #008080;\">#add arrow to plot\n<\/span>plt. <span style=\"color: #3366ff;\">arrow<\/span> (x= <span style=\"color: #008000;\">4<\/span> , y= <span style=\"color: #008000;\">18<\/span> , dx= <span style=\"color: #008000;\">0<\/span> , dy= <span style=\"color: #008000;\">5<\/span> , width= <span style=\"color: #008000;\">.08 <span style=\"color: #000000;\">, facecolor=<\/span> 'red' <span style=\"color: #000000;\">, edgecolor=<\/span> 'none'<\/span> ) \n  \n<span style=\"color: #008080;\">#displayplot \n<\/span>plt. <span style=\"color: #3366ff;\">show<\/span> ()<\/strong> <\/pre>\n<p><img decoding=\"async\" loading=\"lazy\" class=\"aligncenter wp-image-11829 \" src=\"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/fleche3.png\" alt=\"matplotlib \u092e\u0947\u0902 \u0915\u0938\u094d\u091f\u092e \u0930\u0902\u0917 \u0915\u0947 \u0938\u093e\u0925 \u0924\u0940\u0930\" width=\"409\" height=\"276\" srcset=\"\" sizes=\"auto, \"><\/p>\n<p> <span style=\"color: #000000;\">\u0906\u092a \u0936\u0948\u0932\u0940 \u0917\u0941\u0923\u094b\u0902 \u0915\u0940 \u092a\u0942\u0930\u0940 \u0938\u0942\u091a\u0940 <a href=\"https:\/\/matplotlib.org\/api\/_as_gen\/matplotlib.pyplot.arrow.html\" target=\"_blank\" rel=\"noopener noreferrer\">\u092f\u0939\u093e\u0902<\/a> \u092a\u093e \u0938\u0915\u0924\u0947 \u0939\u0948\u0902 \u091c\u093f\u0928\u094d\u0939\u0947\u0902 \u0924\u0940\u0930\u094b\u0902 \u092a\u0930 \u0932\u093e\u0917\u0942 \u0915\u093f\u092f\u093e \u091c\u093e \u0938\u0915\u0924\u093e \u0939\u0948\u0964<\/span><\/p>\n<h3> <span style=\"color: #000000;\"><strong>\u0909\u0926\u093e\u0939\u0930\u0923 3: \u0924\u0940\u0930\u094b\u0902 \u092e\u0947\u0902 \u090f\u0928\u094b\u091f\u0947\u0936\u0928 \u091c\u094b\u0921\u093c\u0947\u0902<\/strong><\/span><\/h3>\n<p> <span style=\"color: #000000;\">\u0928\u093f\u092e\u094d\u0928\u0932\u093f\u0916\u093f\u0924 \u0915\u094b\u0921 \u0926\u093f\u0916\u093e\u0924\u093e \u0939\u0948 \u0915\u093f Matplotlib \u092a\u094d\u0932\u0949\u091f \u092a\u0930 \u090f\u0915 \u0924\u0940\u0930 \u0915\u0947 \u0928\u0940\u091a\u0947 \u090f\u0915 \u090f\u0928\u094b\u091f\u0947\u0936\u0928 \u0915\u0948\u0938\u0947 \u091c\u094b\u0921\u093c\u093e \u091c\u093e\u090f:<\/span> <\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <strong><span style=\"color: #008000;\">import<\/span> matplotlib. <span style=\"color: #3366ff;\">pyplot<\/span> <span style=\"color: #008000;\">as<\/span> plt\n\n<span style=\"color: #008080;\">#define two arrays for plotting\n<\/span>A = [3, 5, 5, 6, 7, 8]\nB = [12, 14, 17, 20, 22, 27]\n\n<span style=\"color: #008080;\">#create scatterplot, specifying marker size to be 40\n<\/span>plt. <span style=\"color: #3366ff;\">scatter<\/span> (A, B, s= <span style=\"color: #008000;\">40<\/span> )\n\n<span style=\"color: #008080;\">#add arrow to plot\n<\/span>plt. <span style=\"color: #3366ff;\">arrow<\/span> (x= <span style=\"color: #008000;\">4<\/span> , y= <span style=\"color: #008000;\">18<\/span> , dx= <span style=\"color: #008000;\">0<\/span> , dy= <span style=\"color: #008000;\">5<\/span> , width= <span style=\"color: #008000;\">.08<\/span> ) \n\n<span style=\"color: #008080;\">#add annotation\n<\/span>plt. <span style=\"color: #3366ff;\">annotate<\/span> (' <span style=\"color: #008000;\">General direction<\/span> ', xy = (3.4, 17))\n  \n<span style=\"color: #008080;\">#displayplot \n<\/span>plt. <span style=\"color: #3366ff;\">show<\/span> ()<\/strong> <\/pre>\n<p><img decoding=\"async\" loading=\"lazy\" class=\"aligncenter wp-image-11830 \" src=\"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/fleche4.png\" alt=\"matplotlib \u092e\u0947\u0902 \u090f\u0928\u094b\u091f\u0947\u0936\u0928 \u0915\u0947 \u0938\u093e\u0925 \u0924\u0940\u0930\" width=\"395\" height=\"263\" srcset=\"\" sizes=\"auto, \"><\/p>\n<h3> <span style=\"color: #000000;\"><strong>\u0905\u0924\u093f\u0930\u093f\u0915\u094d\u0924 \u0938\u0902\u0938\u093e\u0927\u0928<\/strong><\/span><\/h3>\n<p> <a href=\"https:\/\/statorials.org\/hi\/\u0935\u0943\u0924\u094d\u0924-matplotlib\/\" target=\"_blank\" rel=\"noopener noreferrer\">\u092e\u0948\u091f\u092a\u094d\u0932\u094b\u091f\u0932\u093f\u092c \u092e\u0947\u0902 \u0935\u0943\u0924\u094d\u0924 \u0915\u0948\u0938\u0947 \u092a\u094d\u0932\u0949\u091f \u0915\u0930\u0947\u0902 (\u0909\u0926\u093e\u0939\u0930\u0923 \u0915\u0947 \u0938\u093e\u0925)<\/a><br \/><a href=\"https:\/\/statorials.org\/hi\/\u0906\u092f\u0924-matplotlib\/\" target=\"_blank\" rel=\"noopener noreferrer\">\u092e\u0948\u091f\u092a\u094d\u0932\u094b\u091f\u0932\u093f\u092c \u092e\u0947\u0902 \u0906\u092f\u0924 \u0915\u0948\u0938\u0947 \u092c\u0928\u093e\u090f\u0902 (\u0909\u0926\u093e\u0939\u0930\u0923 \u0915\u0947 \u0938\u093e\u0925)<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Matplotlib \u092e\u0947\u0902 \u0924\u0940\u0930 \u0916\u0940\u0902\u091a\u0928\u0947 \u0915\u0947 \u0932\u093f\u090f, \u0906\u092a matplotlib.pyplot.row \u092b\u093c\u0902\u0915\u094d\u0936\u0928 \u0915\u093e \u0909\u092a\u092f\u094b\u0917 \u0915\u0930 \u0938\u0915\u0924\u0947 \u0939\u0948\u0902 , \u091c\u094b \u0928\u093f\u092e\u094d\u0928\u0932\u093f\u0916\u093f\u0924 \u0938\u093f\u0902\u091f\u0948\u0915\u094d\u0938 \u0915\u093e \u0909\u092a\u092f\u094b\u0917 \u0915\u0930\u0924\u093e \u0939\u0948: matplotlib.pyplot.error(x, y, dx, dy) \u0938\u094b\u0928\u093e: x, y: \u0924\u0940\u0930 \u0915\u0947 \u0906\u0927\u093e\u0930 \u0915\u0947 x \u0914\u0930 y \u0928\u093f\u0930\u094d\u0926\u0947\u0936\u093e\u0902\u0915 dx, dy: x \u0914\u0930 y \u0926\u093f\u0936\u093e\u0913\u0902 \u092e\u0947\u0902 \u0924\u0940\u0930 \u0915\u0940 \u0932\u0902\u092c\u093e\u0908 \u092f\u0939 \u091f\u094d\u092f\u0942\u091f\u094b\u0930\u093f\u092f\u0932 \u0907\u0938 \u092b\u093c\u0902\u0915\u094d\u0936\u0928 \u0915\u0947 \u0935\u094d\u092f\u093e\u0935\u0939\u093e\u0930\u093f\u0915 \u0909\u092a\u092f\u094b\u0917 \u0915\u0947 [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[3],"tags":[],"class_list":["post-1189","post","type-post","status-publish","format-standard","hentry","category-3"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v21.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>\u092e\u0948\u091f\u092a\u094d\u0932\u094b\u091f\u0932\u093f\u092c \u092e\u0947\u0902 \u0924\u0940\u0930 \u0915\u0948\u0938\u0947 \u092c\u0928\u093e\u090f\u0902 - \u0938\u094d\u091f\u0947\u091f\u094b\u0932\u0949\u091c\u0940<\/title>\n<meta name=\"description\" content=\"\u092f\u0939 \u091f\u094d\u092f\u0942\u091f\u094b\u0930\u093f\u092f\u0932 \u0915\u0908 \u0909\u0926\u093e\u0939\u0930\u0923\u094b\u0902 \u0915\u0947 \u0938\u093e\u0925 \u092c\u0924\u093e\u0924\u093e \u0939\u0948 \u0915\u093f \u092e\u0948\u091f\u092a\u094d\u0932\u094b\u091f\u0932\u093f\u092c \u092a\u094d\u0932\u0949\u091f \u092a\u0930 \u0924\u0940\u0930 \u0915\u0948\u0938\u0947 \u092c\u0928\u093e\u090f\u0902\u0964\" \/>\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\/hi\/matplotlib-\u0924\u0940\u0930\/\" \/>\n<meta property=\"og:locale\" content=\"hi_IN\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"\u092e\u0948\u091f\u092a\u094d\u0932\u094b\u091f\u0932\u093f\u092c \u092e\u0947\u0902 \u0924\u0940\u0930 \u0915\u0948\u0938\u0947 \u092c\u0928\u093e\u090f\u0902 - \u0938\u094d\u091f\u0947\u091f\u094b\u0932\u0949\u091c\u0940\" \/>\n<meta property=\"og:description\" content=\"\u092f\u0939 \u091f\u094d\u092f\u0942\u091f\u094b\u0930\u093f\u092f\u0932 \u0915\u0908 \u0909\u0926\u093e\u0939\u0930\u0923\u094b\u0902 \u0915\u0947 \u0938\u093e\u0925 \u092c\u0924\u093e\u0924\u093e \u0939\u0948 \u0915\u093f \u092e\u0948\u091f\u092a\u094d\u0932\u094b\u091f\u0932\u093f\u092c \u092a\u094d\u0932\u0949\u091f \u092a\u0930 \u0924\u0940\u0930 \u0915\u0948\u0938\u0947 \u092c\u0928\u093e\u090f\u0902\u0964\" \/>\n<meta property=\"og:url\" content=\"https:\/\/statorials.org\/hi\/matplotlib-\u0924\u0940\u0930\/\" \/>\n<meta property=\"og:site_name\" content=\"Statorials\" \/>\n<meta property=\"article:published_time\" content=\"2023-07-27T08:38:01+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/fleche1.png\" \/>\n<meta name=\"author\" content=\"\u0921\u0949. \u092c\u0947\u0902\u091c\u093e\u092e\u093f\u0928 \u090f\u0902\u0921\u0930\u0938\u0928\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"\u0926\u094d\u0935\u093e\u0930\u093e \u0932\u093f\u0916\u093f\u0924\" \/>\n\t<meta name=\"twitter:data1\" content=\"\u0921\u0949. \u092c\u0947\u0902\u091c\u093e\u092e\u093f\u0928 \u090f\u0902\u0921\u0930\u0938\u0928\" \/>\n\t<meta name=\"twitter:label2\" content=\"\u0905\u0928\u0941\u092e\u093e\u0928\u093f\u0924 \u092a\u0922\u093c\u0928\u0947 \u0915\u093e \u0938\u092e\u092f\" \/>\n\t<meta name=\"twitter:data2\" content=\"1 \u092e\u093f\u0928\u091f\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/statorials.org\/hi\/matplotlib-%e0%a4%a4%e0%a5%80%e0%a4%b0\/\",\"url\":\"https:\/\/statorials.org\/hi\/matplotlib-%e0%a4%a4%e0%a5%80%e0%a4%b0\/\",\"name\":\"\u092e\u0948\u091f\u092a\u094d\u0932\u094b\u091f\u0932\u093f\u092c \u092e\u0947\u0902 \u0924\u0940\u0930 \u0915\u0948\u0938\u0947 \u092c\u0928\u093e\u090f\u0902 - \u0938\u094d\u091f\u0947\u091f\u094b\u0932\u0949\u091c\u0940\",\"isPartOf\":{\"@id\":\"https:\/\/statorials.org\/hi\/#website\"},\"datePublished\":\"2023-07-27T08:38:01+00:00\",\"dateModified\":\"2023-07-27T08:38:01+00:00\",\"author\":{\"@id\":\"https:\/\/statorials.org\/hi\/#\/schema\/person\/94100fc65c6aa3462638578b0f7b3340\"},\"description\":\"\u092f\u0939 \u091f\u094d\u092f\u0942\u091f\u094b\u0930\u093f\u092f\u0932 \u0915\u0908 \u0909\u0926\u093e\u0939\u0930\u0923\u094b\u0902 \u0915\u0947 \u0938\u093e\u0925 \u092c\u0924\u093e\u0924\u093e \u0939\u0948 \u0915\u093f \u092e\u0948\u091f\u092a\u094d\u0932\u094b\u091f\u0932\u093f\u092c \u092a\u094d\u0932\u0949\u091f \u092a\u0930 \u0924\u0940\u0930 \u0915\u0948\u0938\u0947 \u092c\u0928\u093e\u090f\u0902\u0964\",\"breadcrumb\":{\"@id\":\"https:\/\/statorials.org\/hi\/matplotlib-%e0%a4%a4%e0%a5%80%e0%a4%b0\/#breadcrumb\"},\"inLanguage\":\"hi-IN\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/statorials.org\/hi\/matplotlib-%e0%a4%a4%e0%a5%80%e0%a4%b0\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/statorials.org\/hi\/matplotlib-%e0%a4%a4%e0%a5%80%e0%a4%b0\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\u092e\u0941\u0916\u092a\u0943\u0937\u094d\u0920\",\"item\":\"https:\/\/statorials.org\/hi\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"\u092e\u0948\u091f\u092a\u094d\u0932\u094b\u091f\u0932\u093f\u092c \u092e\u0947\u0902 \u0924\u0940\u0930 \u0915\u0948\u0938\u0947 \u092c\u0928\u093e\u090f\u0902\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/statorials.org\/hi\/#website\",\"url\":\"https:\/\/statorials.org\/hi\/\",\"name\":\"Statorials\",\"description\":\"\u0938\u093e\u0902\u0916\u094d\u092f\u093f\u0915\u0940\u092f \u092f\u094b\u0917\u094d\u092f\u0924\u093e \u0915\u0947 \u0932\u093f\u090f \u0906\u092a\u0915\u093e \u092e\u093e\u0930\u094d\u0917\u0926\u0930\u094d\u0936\u0915!\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/statorials.org\/hi\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"hi-IN\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/statorials.org\/hi\/#\/schema\/person\/94100fc65c6aa3462638578b0f7b3340\",\"name\":\"\u0921\u0949. \u092c\u0947\u0902\u091c\u093e\u092e\u093f\u0928 \u090f\u0902\u0921\u0930\u0938\u0928\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"hi-IN\",\"@id\":\"https:\/\/statorials.org\/hi\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/statorials.org\/hi\/wp-content\/uploads\/2023\/11\/Benjamin-Anderson-96x96.jpg\",\"contentUrl\":\"https:\/\/statorials.org\/hi\/wp-content\/uploads\/2023\/11\/Benjamin-Anderson-96x96.jpg\",\"caption\":\"\u0921\u0949. \u092c\u0947\u0902\u091c\u093e\u092e\u093f\u0928 \u090f\u0902\u0921\u0930\u0938\u0928\"},\"description\":\"\u0928\u092e\u0938\u094d\u0924\u0947, \u092e\u0948\u0902 \u092c\u0947\u0902\u091c\u093e\u092e\u093f\u0928 \u0939\u0942\u0902, \u090f\u0915 \u0938\u0947\u0935\u093e\u0928\u093f\u0935\u0943\u0924\u094d\u0924 \u0938\u093e\u0902\u0916\u094d\u092f\u093f\u0915\u0940 \u092a\u094d\u0930\u094b\u092b\u0947\u0938\u0930 \u091c\u094b \u0905\u092c \u0938\u092e\u0930\u094d\u092a\u093f\u0924 Statorials \u0936\u093f\u0915\u094d\u0937\u0915 \u092c\u0928 \u0917\u092f\u093e \u0939\u0948\u0964 \u0938\u093e\u0902\u0916\u094d\u092f\u093f\u0915\u0940 \u0915\u0947 \u0915\u094d\u0937\u0947\u0924\u094d\u0930 \u092e\u0947\u0902 \u0935\u094d\u092f\u093e\u092a\u0915 \u0905\u0928\u0941\u092d\u0935 \u0914\u0930 \u0935\u093f\u0936\u0947\u0937\u091c\u094d\u091e\u0924\u093e \u0915\u0947 \u0938\u093e\u0925, \u092e\u0948\u0902 Statorials \u0915\u0947 \u092e\u093e\u0927\u094d\u092f\u092e \u0938\u0947 \u091b\u093e\u0924\u094d\u0930\u094b\u0902 \u0915\u094b \u0938\u0936\u0915\u094d\u0924 \u092c\u0928\u093e\u0928\u0947 \u0915\u0947 \u0932\u093f\u090f \u0905\u092a\u0928\u093e \u091c\u094d\u091e\u093e\u0928 \u0938\u093e\u091d\u093e \u0915\u0930\u0928\u0947 \u0915\u0947 \u0932\u093f\u090f \u0909\u0924\u094d\u0938\u0941\u0915 \u0939\u0942\u0902\u0964 \u0905\u0927\u093f\u0915 \u091c\u093e\u0928\u0947\",\"sameAs\":[\"https:\/\/statorials.org\/hi\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"\u092e\u0948\u091f\u092a\u094d\u0932\u094b\u091f\u0932\u093f\u092c \u092e\u0947\u0902 \u0924\u0940\u0930 \u0915\u0948\u0938\u0947 \u092c\u0928\u093e\u090f\u0902 - \u0938\u094d\u091f\u0947\u091f\u094b\u0932\u0949\u091c\u0940","description":"\u092f\u0939 \u091f\u094d\u092f\u0942\u091f\u094b\u0930\u093f\u092f\u0932 \u0915\u0908 \u0909\u0926\u093e\u0939\u0930\u0923\u094b\u0902 \u0915\u0947 \u0938\u093e\u0925 \u092c\u0924\u093e\u0924\u093e \u0939\u0948 \u0915\u093f \u092e\u0948\u091f\u092a\u094d\u0932\u094b\u091f\u0932\u093f\u092c \u092a\u094d\u0932\u0949\u091f \u092a\u0930 \u0924\u0940\u0930 \u0915\u0948\u0938\u0947 \u092c\u0928\u093e\u090f\u0902\u0964","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\/hi\/matplotlib-\u0924\u0940\u0930\/","og_locale":"hi_IN","og_type":"article","og_title":"\u092e\u0948\u091f\u092a\u094d\u0932\u094b\u091f\u0932\u093f\u092c \u092e\u0947\u0902 \u0924\u0940\u0930 \u0915\u0948\u0938\u0947 \u092c\u0928\u093e\u090f\u0902 - \u0938\u094d\u091f\u0947\u091f\u094b\u0932\u0949\u091c\u0940","og_description":"\u092f\u0939 \u091f\u094d\u092f\u0942\u091f\u094b\u0930\u093f\u092f\u0932 \u0915\u0908 \u0909\u0926\u093e\u0939\u0930\u0923\u094b\u0902 \u0915\u0947 \u0938\u093e\u0925 \u092c\u0924\u093e\u0924\u093e \u0939\u0948 \u0915\u093f \u092e\u0948\u091f\u092a\u094d\u0932\u094b\u091f\u0932\u093f\u092c \u092a\u094d\u0932\u0949\u091f \u092a\u0930 \u0924\u0940\u0930 \u0915\u0948\u0938\u0947 \u092c\u0928\u093e\u090f\u0902\u0964","og_url":"https:\/\/statorials.org\/hi\/matplotlib-\u0924\u0940\u0930\/","og_site_name":"Statorials","article_published_time":"2023-07-27T08:38:01+00:00","og_image":[{"url":"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/fleche1.png"}],"author":"\u0921\u0949. \u092c\u0947\u0902\u091c\u093e\u092e\u093f\u0928 \u090f\u0902\u0921\u0930\u0938\u0928","twitter_card":"summary_large_image","twitter_misc":{"\u0926\u094d\u0935\u093e\u0930\u093e \u0932\u093f\u0916\u093f\u0924":"\u0921\u0949. \u092c\u0947\u0902\u091c\u093e\u092e\u093f\u0928 \u090f\u0902\u0921\u0930\u0938\u0928","\u0905\u0928\u0941\u092e\u093e\u0928\u093f\u0924 \u092a\u0922\u093c\u0928\u0947 \u0915\u093e \u0938\u092e\u092f":"1 \u092e\u093f\u0928\u091f"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/statorials.org\/hi\/matplotlib-%e0%a4%a4%e0%a5%80%e0%a4%b0\/","url":"https:\/\/statorials.org\/hi\/matplotlib-%e0%a4%a4%e0%a5%80%e0%a4%b0\/","name":"\u092e\u0948\u091f\u092a\u094d\u0932\u094b\u091f\u0932\u093f\u092c \u092e\u0947\u0902 \u0924\u0940\u0930 \u0915\u0948\u0938\u0947 \u092c\u0928\u093e\u090f\u0902 - \u0938\u094d\u091f\u0947\u091f\u094b\u0932\u0949\u091c\u0940","isPartOf":{"@id":"https:\/\/statorials.org\/hi\/#website"},"datePublished":"2023-07-27T08:38:01+00:00","dateModified":"2023-07-27T08:38:01+00:00","author":{"@id":"https:\/\/statorials.org\/hi\/#\/schema\/person\/94100fc65c6aa3462638578b0f7b3340"},"description":"\u092f\u0939 \u091f\u094d\u092f\u0942\u091f\u094b\u0930\u093f\u092f\u0932 \u0915\u0908 \u0909\u0926\u093e\u0939\u0930\u0923\u094b\u0902 \u0915\u0947 \u0938\u093e\u0925 \u092c\u0924\u093e\u0924\u093e \u0939\u0948 \u0915\u093f \u092e\u0948\u091f\u092a\u094d\u0932\u094b\u091f\u0932\u093f\u092c \u092a\u094d\u0932\u0949\u091f \u092a\u0930 \u0924\u0940\u0930 \u0915\u0948\u0938\u0947 \u092c\u0928\u093e\u090f\u0902\u0964","breadcrumb":{"@id":"https:\/\/statorials.org\/hi\/matplotlib-%e0%a4%a4%e0%a5%80%e0%a4%b0\/#breadcrumb"},"inLanguage":"hi-IN","potentialAction":[{"@type":"ReadAction","target":["https:\/\/statorials.org\/hi\/matplotlib-%e0%a4%a4%e0%a5%80%e0%a4%b0\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/statorials.org\/hi\/matplotlib-%e0%a4%a4%e0%a5%80%e0%a4%b0\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\u092e\u0941\u0916\u092a\u0943\u0937\u094d\u0920","item":"https:\/\/statorials.org\/hi\/"},{"@type":"ListItem","position":2,"name":"\u092e\u0948\u091f\u092a\u094d\u0932\u094b\u091f\u0932\u093f\u092c \u092e\u0947\u0902 \u0924\u0940\u0930 \u0915\u0948\u0938\u0947 \u092c\u0928\u093e\u090f\u0902"}]},{"@type":"WebSite","@id":"https:\/\/statorials.org\/hi\/#website","url":"https:\/\/statorials.org\/hi\/","name":"Statorials","description":"\u0938\u093e\u0902\u0916\u094d\u092f\u093f\u0915\u0940\u092f \u092f\u094b\u0917\u094d\u092f\u0924\u093e \u0915\u0947 \u0932\u093f\u090f \u0906\u092a\u0915\u093e \u092e\u093e\u0930\u094d\u0917\u0926\u0930\u094d\u0936\u0915!","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/statorials.org\/hi\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"hi-IN"},{"@type":"Person","@id":"https:\/\/statorials.org\/hi\/#\/schema\/person\/94100fc65c6aa3462638578b0f7b3340","name":"\u0921\u0949. \u092c\u0947\u0902\u091c\u093e\u092e\u093f\u0928 \u090f\u0902\u0921\u0930\u0938\u0928","image":{"@type":"ImageObject","inLanguage":"hi-IN","@id":"https:\/\/statorials.org\/hi\/#\/schema\/person\/image\/","url":"https:\/\/statorials.org\/hi\/wp-content\/uploads\/2023\/11\/Benjamin-Anderson-96x96.jpg","contentUrl":"https:\/\/statorials.org\/hi\/wp-content\/uploads\/2023\/11\/Benjamin-Anderson-96x96.jpg","caption":"\u0921\u0949. \u092c\u0947\u0902\u091c\u093e\u092e\u093f\u0928 \u090f\u0902\u0921\u0930\u0938\u0928"},"description":"\u0928\u092e\u0938\u094d\u0924\u0947, \u092e\u0948\u0902 \u092c\u0947\u0902\u091c\u093e\u092e\u093f\u0928 \u0939\u0942\u0902, \u090f\u0915 \u0938\u0947\u0935\u093e\u0928\u093f\u0935\u0943\u0924\u094d\u0924 \u0938\u093e\u0902\u0916\u094d\u092f\u093f\u0915\u0940 \u092a\u094d\u0930\u094b\u092b\u0947\u0938\u0930 \u091c\u094b \u0905\u092c \u0938\u092e\u0930\u094d\u092a\u093f\u0924 Statorials \u0936\u093f\u0915\u094d\u0937\u0915 \u092c\u0928 \u0917\u092f\u093e \u0939\u0948\u0964 \u0938\u093e\u0902\u0916\u094d\u092f\u093f\u0915\u0940 \u0915\u0947 \u0915\u094d\u0937\u0947\u0924\u094d\u0930 \u092e\u0947\u0902 \u0935\u094d\u092f\u093e\u092a\u0915 \u0905\u0928\u0941\u092d\u0935 \u0914\u0930 \u0935\u093f\u0936\u0947\u0937\u091c\u094d\u091e\u0924\u093e \u0915\u0947 \u0938\u093e\u0925, \u092e\u0948\u0902 Statorials \u0915\u0947 \u092e\u093e\u0927\u094d\u092f\u092e \u0938\u0947 \u091b\u093e\u0924\u094d\u0930\u094b\u0902 \u0915\u094b \u0938\u0936\u0915\u094d\u0924 \u092c\u0928\u093e\u0928\u0947 \u0915\u0947 \u0932\u093f\u090f \u0905\u092a\u0928\u093e \u091c\u094d\u091e\u093e\u0928 \u0938\u093e\u091d\u093e \u0915\u0930\u0928\u0947 \u0915\u0947 \u0932\u093f\u090f \u0909\u0924\u094d\u0938\u0941\u0915 \u0939\u0942\u0902\u0964 \u0905\u0927\u093f\u0915 \u091c\u093e\u0928\u0947","sameAs":["https:\/\/statorials.org\/hi"]}]}},"yoast_meta":{"yoast_wpseo_title":"","yoast_wpseo_metadesc":"","yoast_wpseo_canonical":""},"_links":{"self":[{"href":"https:\/\/statorials.org\/hi\/wp-json\/wp\/v2\/posts\/1189","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/statorials.org\/hi\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/statorials.org\/hi\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/statorials.org\/hi\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/statorials.org\/hi\/wp-json\/wp\/v2\/comments?post=1189"}],"version-history":[{"count":0,"href":"https:\/\/statorials.org\/hi\/wp-json\/wp\/v2\/posts\/1189\/revisions"}],"wp:attachment":[{"href":"https:\/\/statorials.org\/hi\/wp-json\/wp\/v2\/media?parent=1189"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/statorials.org\/hi\/wp-json\/wp\/v2\/categories?post=1189"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/statorials.org\/hi\/wp-json\/wp\/v2\/tags?post=1189"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}