{"id":1326,"date":"2023-07-26T20:52:11","date_gmt":"2023-07-26T20:52:11","guid":{"rendered":"https:\/\/statorials.org\/ar\/%d8%b1%d8%b3%d9%85-%d8%ae%d8%b7%d9%88%d8%b7-%d9%85%d8%aa%d8%b9%d8%af%d8%af%d8%a9-matplotlib\/"},"modified":"2023-07-26T20:52:11","modified_gmt":"2023-07-26T20:52:11","slug":"%d8%b1%d8%b3%d9%85-%d8%ae%d8%b7%d9%88%d8%b7-%d9%85%d8%aa%d8%b9%d8%af%d8%af%d8%a9-matplotlib","status":"publish","type":"post","link":"https:\/\/statorials.org\/ar\/%d8%b1%d8%b3%d9%85-%d8%ae%d8%b7%d9%88%d8%b7-%d9%85%d8%aa%d8%b9%d8%af%d8%af%d8%a9-matplotlib\/","title":{"rendered":"\u0643\u064a\u0641\u064a\u0629 \u0631\u0633\u0645 \u062e\u0637\u0648\u0637 \u0645\u062a\u0639\u062f\u062f\u0629 \u0641\u064a matplotlib"},"content":{"rendered":"<p><\/p>\n<hr>\n<p style=\";text-align:right;direction:rtl\"><span style=\"color: #000000;\">\u064a\u0645\u0643\u0646\u0643 \u0639\u0631\u0636 \u0623\u0633\u0637\u0631 \u0645\u062a\u0639\u062f\u062f\u0629 \u0641\u064a \u0645\u062e\u0637\u0637 Matplotlib \u0648\u0627\u062d\u062f \u0628\u0627\u0633\u062a\u062e\u062f\u0627\u0645 \u0628\u0646\u0627\u0621 \u0627\u0644\u062c\u0645\u0644\u0629 \u0627\u0644\u062a\u0627\u0644\u064a:<\/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\nplt. <span style=\"color: #3366ff;\">plot<\/span> (df[' <span style=\"color: #008000;\">column1<\/span> '])\nplt. <span style=\"color: #3366ff;\">plot<\/span> (df[' <span style=\"color: #008000;\">column2<\/span> '])\nplt. <span style=\"color: #3366ff;\">plot<\/span> (df[' <span style=\"color: #008000;\">column3<\/span> '])\n\n...\nplt. <span style=\"color: #3366ff;\">show<\/span> ()\n<\/strong><\/pre>\n<p style=\";text-align:right;direction:rtl\"> <span style=\"color: #000000;\">\u064a\u0642\u062f\u0645 \u0647\u0630\u0627 \u0627\u0644\u0628\u0631\u0646\u0627\u0645\u062c \u0627\u0644\u062a\u0639\u0644\u064a\u0645\u064a \u0639\u062f\u0629 \u0623\u0645\u062b\u0644\u0629 \u062d\u0648\u0644 \u0643\u064a\u0641\u064a\u0629 \u0631\u0633\u0645 \u062e\u0637\u0648\u0637 \u0645\u062a\u0639\u062f\u062f\u0629 \u0641\u064a \u0645\u062e\u0637\u0637 \u0628\u0627\u0633\u062a\u062e\u062f\u0627\u0645 \u0627\u0644\u0628\u0627\u0646\u062f\u0627 DataFrame \u0627\u0644\u062a\u0627\u0644\u064a\u0629:<\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <strong><span style=\"color: #107d3f;\">import <span style=\"color: #000000;\">numpy<\/span> as <span style=\"color: #000000;\">np<\/span> \nimport<\/span> pandas <span style=\"color: #107d3f;\">as<\/span> pd\n\n<span style=\"color: #008080;\">#make this example reproducible\n<\/span>n.p. <span style=\"color: #3366ff;\">random<\/span> . <span style=\"color: #3366ff;\">seeds<\/span> (0)\n\n<span style=\"color: #008080;\">#create dataset\n<\/span>period = np. <span style=\"color: #3366ff;\">arange<\/span> (1, 101, 1)\nleads = np. <span style=\"color: #3366ff;\">random<\/span> . <span style=\"color: #3366ff;\">uniform<\/span> (1, 50, 100)\nprospects = np. <span style=\"color: #3366ff;\">random<\/span> . <span style=\"color: #3366ff;\">uniform<\/span> (40, 80, 100)\nsales = 60 + 2*period + np. <span style=\"color: #3366ff;\">random<\/span> . <span style=\"color: #3366ff;\">normal<\/span> (loc=0, scale=.5*period, size=100)\ndf = pd. <span style=\"color: #3366ff;\">DataFrame<\/span> ({' <span style=\"color: #008000;\">period<\/span> ': period, \n                   ' <span style=\"color: #008000;\">leads<\/span> ': leads,\n                   ' <span style=\"color: #008000;\">prospects<\/span> ': prospects,\n                   ' <span style=\"color: #008000;\">sales<\/span> ': sales})\n\n<span style=\"color: #008080;\">#view first 10 rows\n<\/span>df. <span style=\"color: #3366ff;\">head<\/span> (10)\n\n\n        period leads sales prospects\n0 1 27.891862 67.112661 62.563318\n1 2 36.044279 50.800319 62.920068\n2 3 30.535405 69.407761 64.278797\n3 4 27.699276 78.487542 67.124360\n4 5 21.759085 49.950126 68.754919\n5 6 32.648812 63.046293 77.788596\n6 7 22.441773 63.681677 77.322973\n7 8 44.696877 62.890076 76.350205\n8 9 48.219475 48.923265 72.485540\n9 10 19.788634 78.109960 84.221815\n<\/strong><\/pre>\n<h3 style=\";text-align:right;direction:rtl\"> <span style=\"color: #000000;\"><strong>\u0631\u0633\u0645 \u062e\u0637\u0648\u0637 \u0645\u062a\u0639\u062f\u062f\u0629 \u0641\u064a Matplotlib<\/strong><\/span><\/h3>\n<p style=\";text-align:right;direction:rtl\"> <span style=\"color: #000000;\">\u064a\u0648\u0636\u062d \u0627\u0644\u062a\u0639\u0644\u064a\u0645\u0629 \u0627\u0644\u0628\u0631\u0645\u062c\u064a\u0629 \u0627\u0644\u062a\u0627\u0644\u064a\u0629 \u0643\u064a\u0641\u064a\u0629 \u0631\u0633\u0645 \u062b\u0644\u0627\u062b\u0629 \u0623\u0633\u0637\u0631 \u0641\u0631\u062f\u064a\u0629 \u0641\u064a \u0642\u0637\u0639\u0629 \u0623\u0631\u0636 \u0648\u0627\u062d\u062f\u0629 \u0641\u064a matplotlib:<\/span> <\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <strong><span style=\"color: #107d3f;\"><span style=\"color: #000000;\"><span style=\"color: #008080;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\">import<\/span> matplotlib. <span style=\"color: #3366ff;\">pyplot<\/span> <span style=\"color: #008000;\">as<\/span> plt<\/span>\n\n#plot individual lines<\/span>\nplt. <span style=\"color: #3366ff;\">plot<\/span> (df[' <span style=\"color: #008000;\">leads<\/span> '])<\/span>\n<span style=\"color: #000000;\">plt. <span style=\"color: #3366ff;\">plot<\/span> (df[' <span style=\"color: #008000;\">prospects<\/span> '])<\/span>\n<span style=\"color: #000000;\">plt. <span style=\"color: #3366ff;\">plot<\/span> (df[' <span style=\"color: #008000;\">sales<\/span> '])\n\n<\/span><span style=\"color: #008080;\">#displayplot<\/span>\n<span style=\"color: #000000;\">plt. <span style=\"color: #3366ff;\">show<\/span> ()<\/span>\n<\/span><\/strong><\/pre>\n<p style=\";text-align:right;direction:rtl\"><img decoding=\"async\" loading=\"lazy\" class=\"aligncenter wp-image-12965 \" src=\"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/multmatplotlib1.png\" alt=\"\u062e\u0637\u0648\u0637 \u0645\u062a\u0639\u062f\u062f\u0629 \u0641\u064a \u0645\u062e\u0637\u0637 Matplotlib\" width=\"453\" height=\"391\" srcset=\"\" sizes=\"\"><\/p>\n<h3 style=\";text-align:right;direction:rtl\"> <span style=\"color: #000000;\"><strong>\u062a\u062e\u0635\u064a\u0635 \u0627\u0644\u062e\u0637\u0648\u0637 \u0641\u064a Matplotlib<\/strong><\/span><\/h3>\n<p style=\";text-align:right;direction:rtl\"> <span style=\"color: #000000;\">\u064a\u0645\u0643\u0646\u0643 \u0623\u064a\u0636\u064b\u0627 \u062a\u062e\u0635\u064a\u0635 \u0627\u0644\u0644\u0648\u0646 \u0648\u0627\u0644\u0646\u0645\u0637 \u0648\u0627\u0644\u0639\u0631\u0636 \u0644\u0643\u0644 \u0633\u0637\u0631:<\/span> <\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <strong><span style=\"color: #107d3f;\"><span style=\"color: #000000;\"><span style=\"color: #008080;\">#plot individual lines with custom colors, styles, and widths<\/span>\nplt. <span style=\"color: #3366ff;\">plot<\/span> (df[' <span style=\"color: #008000;\">leads<\/span> '], color=' <span style=\"color: #008000;\">green<\/span> ')\nplt. <span style=\"color: #3366ff;\">plot<\/span> (df[' <span style=\"color: #008000;\">prospects<\/span> '], color=' <span style=\"color: #008000;\">steelblue<\/span> ', linewidth= <span style=\"color: #008000;\">4<\/span> )\nplt. <span style=\"color: #3366ff;\">plot<\/span> (df[' <span style=\"color: #008000;\">sales<\/span> '], color=' <span style=\"color: #008000;\">purple<\/span> ', linestyle=' <span style=\"color: #008000;\">dashed<\/span> ')\n\n<\/span><span style=\"color: #008080;\">#displayplot<\/span>\n<span style=\"color: #000000;\">plt. <span style=\"color: #3366ff;\">show<\/span> ()<\/span><\/span><\/strong> <\/pre>\n<p style=\";text-align:right;direction:rtl\"><img decoding=\"async\" loading=\"lazy\" class=\"aligncenter wp-image-12966 \" src=\"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/multmatplotlib2.png\" alt=\"\u062a\u062e\u0635\u064a\u0635 \u062e\u0637\u0648\u0637 \u0645\u062a\u0639\u062f\u062f\u0629 \u0641\u064a Matplotlib\" width=\"438\" height=\"368\" srcset=\"\" sizes=\"\"><\/p>\n<h3 style=\";text-align:right;direction:rtl\"> <span style=\"color: #000000;\"><strong>\u0625\u0636\u0627\u0641\u0629 \u0648\u0633\u064a\u0644\u0629 \u0625\u064a\u0636\u0627\u062d \u0641\u064a Matplotlib<\/strong><\/span><\/h3>\n<p style=\";text-align:right;direction:rtl\"> <span style=\"color: #000000;\">\u064a\u0645\u0643\u0646\u0643 \u0623\u064a\u0636\u064b\u0627 \u0625\u0636\u0627\u0641\u0629 \u062a\u0633\u0645\u064a\u0629 \u062a\u0648\u0636\u064a\u062d\u064a\u0629 \u0644\u062a\u0645\u064a\u064a\u0632 \u0627\u0644\u0633\u0637\u0648\u0631:<\/span> <\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <strong><span style=\"color: #107d3f;\"><span style=\"color: #000000;\"><span style=\"color: #008080;\">#plot individual lines with custom colors, styles, and widths<\/span>\nplt. <span style=\"color: #3366ff;\">plot<\/span> (df[' <span style=\"color: #008000;\">leads<\/span> '], label=' <span style=\"color: #008000;\">Leads<\/span> ', color=' <span style=\"color: #008000;\">green<\/span> ')\nplt. <span style=\"color: #3366ff;\">plot<\/span> (df[' <span style=\"color: #008000;\">prospects<\/span> '], label=' <span style=\"color: #008000;\">Prospects<\/span> ', color=' <span style=\"color: #008000;\">steelblue<\/span> ', linewidth= <span style=\"color: #008000;\">4<\/span> )\nplt. <span style=\"color: #3366ff;\">plot<\/span> (df[' <span style=\"color: #008000;\">sales<\/span> '], label=' <span style=\"color: #008000;\">Sales<\/span> ', color=' <span style=\"color: #008000;\">purple<\/span> ', linestyle=' <span style=\"color: #008000;\">dashed<\/span> ')\n\n<span style=\"color: #008080;\">#add legend\n<span style=\"color: #000000;\">plt. <span style=\"color: #3366ff;\">legend<\/span> ()<\/span>\n\n<\/span><\/span><span style=\"color: #008080;\">#displayplot<\/span>\n<span style=\"color: #000000;\">plt. <span style=\"color: #3366ff;\">show<\/span> ()<\/span><\/span><\/strong> <\/pre>\n<p style=\";text-align:right;direction:rtl\"><img decoding=\"async\" loading=\"lazy\" class=\"aligncenter wp-image-12967 \" src=\"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/multmatplotlib3.png\" alt=\"\u0625\u0636\u0627\u0641\u0629 \u0648\u0633\u064a\u0644\u0629 \u0625\u064a\u0636\u0627\u062d \u0644\u0623\u0633\u0637\u0631 \u0645\u062a\u0639\u062f\u062f\u0629 \u0641\u064a Matplotlib\" width=\"449\" height=\"379\" srcset=\"\" sizes=\"\"><\/p>\n<h3 style=\";text-align:right;direction:rtl\"> <span style=\"color: #000000;\"><strong>\u0623\u0636\u0641 \u062a\u0633\u0645\u064a\u0627\u062a \u0648\u0639\u0646\u0627\u0648\u064a\u0646 \u0627\u0644\u0645\u062d\u0627\u0648\u0631 \u0641\u064a Matplotlib<\/strong><\/span><\/h3>\n<p style=\";text-align:right;direction:rtl\"> <span style=\"color: #000000;\">\u0648\u0623\u062e\u064a\u0631\u064b\u0627\u060c \u064a\u0645\u0643\u0646\u0643 \u0625\u0636\u0627\u0641\u0629 \u062a\u0633\u0645\u064a\u0627\u062a \u0627\u0644\u0645\u062d\u0627\u0648\u0631 \u0648\u0639\u0646\u0648\u0627\u0646\u064b\u0627 \u0644\u0625\u0643\u0645\u0627\u0644 \u0627\u0644\u0645\u062e\u0637\u0637:<\/span> <\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <strong><span style=\"color: #107d3f;\"><span style=\"color: #000000;\"><span style=\"color: #008080;\">#plot individual lines with custom colors, styles, and widths<\/span>\nplt. <span style=\"color: #3366ff;\">plot<\/span> (df[' <span style=\"color: #008000;\">leads<\/span> '], label=' <span style=\"color: #008000;\">Leads<\/span> ', color=' <span style=\"color: #008000;\">green<\/span> ')\nplt. <span style=\"color: #3366ff;\">plot<\/span> (df[' <span style=\"color: #008000;\">prospects<\/span> '], label=' <span style=\"color: #008000;\">Prospects<\/span> ', color=' <span style=\"color: #008000;\">steelblue<\/span> ', linewidth= <span style=\"color: #008000;\">4<\/span> )\nplt. <span style=\"color: #3366ff;\">plot<\/span> (df[' <span style=\"color: #008000;\">sales<\/span> '], label=' <span style=\"color: #008000;\">Sales<\/span> ', color=' <span style=\"color: #008000;\">purple<\/span> ', linestyle=' <span style=\"color: #008000;\">dashed<\/span> ')\n\n<span style=\"color: #008080;\">#add legend\n<span style=\"color: #000000;\">plt.<\/span> <span style=\"color: #3366ff;\">legend<\/span> <span style=\"color: #000000;\">()<\/span>\n\n#add axis labels and a title\n<span style=\"color: #000000;\">plt. <span style=\"color: #3366ff;\">ylabel<\/span> (' <span style=\"color: #008000;\">Sales<\/span> ', fontsize= <span style=\"color: #008000;\">14<\/span> )<\/span>\n<span style=\"color: #000000;\">plt. <span style=\"color: #3366ff;\">xlabel<\/span> (' <span style=\"color: #008000;\">Period<\/span> ', fontsize= <span style=\"color: #008000;\">14<\/span> )<\/span>\n<span style=\"color: #000000;\">plt. <span style=\"color: #3366ff;\">title<\/span> (' <span style=\"color: #008000;\">Company Metrics<\/span> ', fontsize= <span style=\"color: #008000;\">16<\/span> )<\/span>\n\n<\/span><\/span><span style=\"color: #008080;\">#displayplot<\/span>\n<span style=\"color: #000000;\">plt. <span style=\"color: #3366ff;\">show<\/span> ()<\/span><\/span><\/strong> <\/pre>\n<p style=\";text-align:right;direction:rtl\"><img decoding=\"async\" loading=\"lazy\" class=\"aligncenter wp-image-12968 \" src=\"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/multmatplotlib4.png\" alt=\"\" width=\"460\" height=\"395\" srcset=\"\" sizes=\"\"><\/p>\n<p style=\";text-align:right;direction:rtl\"> <span style=\"color: #000000;\"><em>\u064a\u0645\u0643\u0646\u0643 \u0627\u0644\u0639\u062b\u0648\u0631 \u0639\u0644\u0649 \u0627\u0644\u0645\u0632\u064a\u062f \u0645\u0646 \u062f\u0631\u0648\u0633 Matplotlib \u0647\u0646\u0627 .<\/em><\/span><\/p>\n","protected":false},"excerpt":{"rendered":"<p>\u064a\u0645\u0643\u0646\u0643 \u0639\u0631\u0636 \u0623\u0633\u0637\u0631 \u0645\u062a\u0639\u062f\u062f\u0629 \u0641\u064a \u0645\u062e\u0637\u0637 Matplotlib \u0648\u0627\u062d\u062f \u0628\u0627\u0633\u062a\u062e\u062f\u0627\u0645 \u0628\u0646\u0627\u0621 \u0627\u0644\u062c\u0645\u0644\u0629 \u0627\u0644\u062a\u0627\u0644\u064a: import matplotlib. pyplot as plt plt. plot (df[&#8216; column1 &#8216;]) plt. plot (df[&#8216; column2 &#8216;]) plt. plot (df[&#8216; column3 &#8216;]) &#8230; plt. show () \u064a\u0642\u062f\u0645 \u0647\u0630\u0627 \u0627\u0644\u0628\u0631\u0646\u0627\u0645\u062c \u0627\u0644\u062a\u0639\u0644\u064a\u0645\u064a \u0639\u062f\u0629 \u0623\u0645\u062b\u0644\u0629 \u062d\u0648\u0644 \u0643\u064a\u0641\u064a\u0629 \u0631\u0633\u0645 \u062e\u0637\u0648\u0637 \u0645\u062a\u0639\u062f\u062f\u0629 \u0641\u064a \u0645\u062e\u0637\u0637 \u0628\u0627\u0633\u062a\u062e\u062f\u0627\u0645 \u0627\u0644\u0628\u0627\u0646\u062f\u0627 DataFrame \u0627\u0644\u062a\u0627\u0644\u064a\u0629: import numpy [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[11],"tags":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v21.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>\u0643\u064a\u0641\u064a\u0629 \u0631\u0633\u0645 \u062e\u0637\u0648\u0637 \u0645\u062a\u0639\u062f\u062f\u0629 \u0641\u064a Matplotlib - \u0639\u0644\u0645 \u0627\u0644\u0625\u062d\u0635\u0627\u0621<\/title>\n<meta name=\"description\" content=\"\u064a\u0634\u0631\u062d \u0647\u0630\u0627 \u0627\u0644\u0628\u0631\u0646\u0627\u0645\u062c \u0627\u0644\u062a\u0639\u0644\u064a\u0645\u064a \u0643\u064a\u0641\u064a\u0629 \u0631\u0633\u0645 \u0648\u062a\u062e\u0635\u064a\u0635 \u062e\u0637\u0648\u0637 \u0645\u062a\u0639\u062f\u062f\u0629 \u0641\u064a Matplotlib\u060c \u0645\u0639 \u0639\u062f\u0629 \u0623\u0645\u062b\u0644\u0629.\" \/>\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\/ar\/\u0631\u0633\u0645-\u062e\u0637\u0648\u0637-\u0645\u062a\u0639\u062f\u062f\u0629-matplotlib\/\" \/>\n<meta property=\"og:locale\" content=\"az_AZ\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"\u0643\u064a\u0641\u064a\u0629 \u0631\u0633\u0645 \u062e\u0637\u0648\u0637 \u0645\u062a\u0639\u062f\u062f\u0629 \u0641\u064a Matplotlib - \u0639\u0644\u0645 \u0627\u0644\u0625\u062d\u0635\u0627\u0621\" \/>\n<meta property=\"og:description\" content=\"\u064a\u0634\u0631\u062d \u0647\u0630\u0627 \u0627\u0644\u0628\u0631\u0646\u0627\u0645\u062c \u0627\u0644\u062a\u0639\u0644\u064a\u0645\u064a \u0643\u064a\u0641\u064a\u0629 \u0631\u0633\u0645 \u0648\u062a\u062e\u0635\u064a\u0635 \u062e\u0637\u0648\u0637 \u0645\u062a\u0639\u062f\u062f\u0629 \u0641\u064a Matplotlib\u060c \u0645\u0639 \u0639\u062f\u0629 \u0623\u0645\u062b\u0644\u0629.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/statorials.org\/ar\/\u0631\u0633\u0645-\u062e\u0637\u0648\u0637-\u0645\u062a\u0639\u062f\u062f\u0629-matplotlib\/\" \/>\n<meta property=\"og:site_name\" content=\"Statorials\" \/>\n<meta property=\"article:published_time\" content=\"2023-07-26T20:52:11+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/multmatplotlib1.png\" \/>\n<meta name=\"author\" content=\"\u062f\u0643\u062a\u0648\u0631 \u0628\u0646\u064a\u0627\u0645\u064a\u0646 \u0623\u0646\u062f\u0631\u0633\u0648\u0646\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"\u062f\u0643\u062a\u0648\u0631 \u0628\u0646\u064a\u0627\u0645\u064a\u0646 \u0623\u0646\u062f\u0631\u0633\u0648\u0646\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/statorials.org\/ar\/%d8%b1%d8%b3%d9%85-%d8%ae%d8%b7%d9%88%d8%b7-%d9%85%d8%aa%d8%b9%d8%af%d8%af%d8%a9-matplotlib\/\",\"url\":\"https:\/\/statorials.org\/ar\/%d8%b1%d8%b3%d9%85-%d8%ae%d8%b7%d9%88%d8%b7-%d9%85%d8%aa%d8%b9%d8%af%d8%af%d8%a9-matplotlib\/\",\"name\":\"\u0643\u064a\u0641\u064a\u0629 \u0631\u0633\u0645 \u062e\u0637\u0648\u0637 \u0645\u062a\u0639\u062f\u062f\u0629 \u0641\u064a Matplotlib - \u0639\u0644\u0645 \u0627\u0644\u0625\u062d\u0635\u0627\u0621\",\"isPartOf\":{\"@id\":\"https:\/\/statorials.org\/ar\/#website\"},\"datePublished\":\"2023-07-26T20:52:11+00:00\",\"dateModified\":\"2023-07-26T20:52:11+00:00\",\"author\":{\"@id\":\"https:\/\/statorials.org\/ar\/#\/schema\/person\/a0a26e65f97483429b863aae1a11e3b3\"},\"description\":\"\u064a\u0634\u0631\u062d \u0647\u0630\u0627 \u0627\u0644\u0628\u0631\u0646\u0627\u0645\u062c \u0627\u0644\u062a\u0639\u0644\u064a\u0645\u064a \u0643\u064a\u0641\u064a\u0629 \u0631\u0633\u0645 \u0648\u062a\u062e\u0635\u064a\u0635 \u062e\u0637\u0648\u0637 \u0645\u062a\u0639\u062f\u062f\u0629 \u0641\u064a Matplotlib\u060c \u0645\u0639 \u0639\u062f\u0629 \u0623\u0645\u062b\u0644\u0629.\",\"breadcrumb\":{\"@id\":\"https:\/\/statorials.org\/ar\/%d8%b1%d8%b3%d9%85-%d8%ae%d8%b7%d9%88%d8%b7-%d9%85%d8%aa%d8%b9%d8%af%d8%af%d8%a9-matplotlib\/#breadcrumb\"},\"inLanguage\":\"azb\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/statorials.org\/ar\/%d8%b1%d8%b3%d9%85-%d8%ae%d8%b7%d9%88%d8%b7-%d9%85%d8%aa%d8%b9%d8%af%d8%af%d8%a9-matplotlib\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/statorials.org\/ar\/%d8%b1%d8%b3%d9%85-%d8%ae%d8%b7%d9%88%d8%b7-%d9%85%d8%aa%d8%b9%d8%af%d8%af%d8%a9-matplotlib\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\u0628\u064a\u062a\",\"item\":\"https:\/\/statorials.org\/ar\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"\u0643\u064a\u0641\u064a\u0629 \u0631\u0633\u0645 \u062e\u0637\u0648\u0637 \u0645\u062a\u0639\u062f\u062f\u0629 \u0641\u064a matplotlib\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/statorials.org\/ar\/#website\",\"url\":\"https:\/\/statorials.org\/ar\/\",\"name\":\"Statorials\",\"description\":\"\u062f\u0644\u064a\u0644\u0643 \u0644\u0645\u062d\u0648 \u0627\u0644\u0623\u0645\u064a\u0629 \u0627\u0644\u0625\u062d\u0635\u0627\u0626\u064a\u0629!\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/statorials.org\/ar\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"azb\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/statorials.org\/ar\/#\/schema\/person\/a0a26e65f97483429b863aae1a11e3b3\",\"name\":\"\u062f\u0643\u062a\u0648\u0631 \u0628\u0646\u064a\u0627\u0645\u064a\u0646 \u0623\u0646\u062f\u0631\u0633\u0648\u0646\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"azb\",\"@id\":\"https:\/\/statorials.org\/ar\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/statorials.org\/ar\/wp-content\/uploads\/2023\/10\/Dr.-Benjamin-Anderson-96x96.jpg\",\"contentUrl\":\"https:\/\/statorials.org\/ar\/wp-content\/uploads\/2023\/10\/Dr.-Benjamin-Anderson-96x96.jpg\",\"caption\":\"\u062f\u0643\u062a\u0648\u0631 \u0628\u0646\u064a\u0627\u0645\u064a\u0646 \u0623\u0646\u062f\u0631\u0633\u0648\u0646\"},\"description\":\"\u0645\u0631\u062d\u0628\u064b\u0627\u060c \u0623\u0646\u0627 \u0628\u0646\u062c\u0627\u0645\u064a\u0646\u060c \u0623\u0633\u062a\u0627\u0630 \u0627\u0644\u0625\u062d\u0635\u0627\u0621 \u0627\u0644\u0645\u062a\u0642\u0627\u0639\u062f \u0627\u0644\u0630\u064a \u062a\u062d\u0648\u0644 \u0625\u0644\u0649 \u0645\u062f\u0631\u0633 \u0645\u062a\u062e\u0635\u0635 \u0641\u064a Statorials. \u0628\u0641\u0636\u0644 \u062e\u0628\u0631\u062a\u064a \u0627\u0644\u0648\u0627\u0633\u0639\u0629 \u0641\u064a \u0645\u062c\u0627\u0644 \u0627\u0644\u0625\u062d\u0635\u0627\u0621\u060c \u0641\u0623\u0646\u0627 \u062d\u0631\u064a\u0635 \u0639\u0644\u0649 \u0645\u0634\u0627\u0631\u0643\u0629 \u0645\u0639\u0631\u0641\u062a\u064a \u0644\u062a\u0645\u0643\u064a\u0646 \u0627\u0644\u0637\u0644\u0627\u0628 \u0645\u0646 \u062e\u0644\u0627\u0644 Statorials. \u062a\u0639\u0631\u0641 \u0623\u0643\u062b\u0631\",\"sameAs\":[\"https:\/\/statorials.org\/ar\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"\u0643\u064a\u0641\u064a\u0629 \u0631\u0633\u0645 \u062e\u0637\u0648\u0637 \u0645\u062a\u0639\u062f\u062f\u0629 \u0641\u064a Matplotlib - \u0639\u0644\u0645 \u0627\u0644\u0625\u062d\u0635\u0627\u0621","description":"\u064a\u0634\u0631\u062d \u0647\u0630\u0627 \u0627\u0644\u0628\u0631\u0646\u0627\u0645\u062c \u0627\u0644\u062a\u0639\u0644\u064a\u0645\u064a \u0643\u064a\u0641\u064a\u0629 \u0631\u0633\u0645 \u0648\u062a\u062e\u0635\u064a\u0635 \u062e\u0637\u0648\u0637 \u0645\u062a\u0639\u062f\u062f\u0629 \u0641\u064a Matplotlib\u060c \u0645\u0639 \u0639\u062f\u0629 \u0623\u0645\u062b\u0644\u0629.","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\/ar\/\u0631\u0633\u0645-\u062e\u0637\u0648\u0637-\u0645\u062a\u0639\u062f\u062f\u0629-matplotlib\/","og_locale":"az_AZ","og_type":"article","og_title":"\u0643\u064a\u0641\u064a\u0629 \u0631\u0633\u0645 \u062e\u0637\u0648\u0637 \u0645\u062a\u0639\u062f\u062f\u0629 \u0641\u064a Matplotlib - \u0639\u0644\u0645 \u0627\u0644\u0625\u062d\u0635\u0627\u0621","og_description":"\u064a\u0634\u0631\u062d \u0647\u0630\u0627 \u0627\u0644\u0628\u0631\u0646\u0627\u0645\u062c \u0627\u0644\u062a\u0639\u0644\u064a\u0645\u064a \u0643\u064a\u0641\u064a\u0629 \u0631\u0633\u0645 \u0648\u062a\u062e\u0635\u064a\u0635 \u062e\u0637\u0648\u0637 \u0645\u062a\u0639\u062f\u062f\u0629 \u0641\u064a Matplotlib\u060c \u0645\u0639 \u0639\u062f\u0629 \u0623\u0645\u062b\u0644\u0629.","og_url":"https:\/\/statorials.org\/ar\/\u0631\u0633\u0645-\u062e\u0637\u0648\u0637-\u0645\u062a\u0639\u062f\u062f\u0629-matplotlib\/","og_site_name":"Statorials","article_published_time":"2023-07-26T20:52:11+00:00","og_image":[{"url":"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/multmatplotlib1.png"}],"author":"\u062f\u0643\u062a\u0648\u0631 \u0628\u0646\u064a\u0627\u0645\u064a\u0646 \u0623\u0646\u062f\u0631\u0633\u0648\u0646","twitter_card":"summary_large_image","twitter_misc":{"Written by":"\u062f\u0643\u062a\u0648\u0631 \u0628\u0646\u064a\u0627\u0645\u064a\u0646 \u0623\u0646\u062f\u0631\u0633\u0648\u0646","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/statorials.org\/ar\/%d8%b1%d8%b3%d9%85-%d8%ae%d8%b7%d9%88%d8%b7-%d9%85%d8%aa%d8%b9%d8%af%d8%af%d8%a9-matplotlib\/","url":"https:\/\/statorials.org\/ar\/%d8%b1%d8%b3%d9%85-%d8%ae%d8%b7%d9%88%d8%b7-%d9%85%d8%aa%d8%b9%d8%af%d8%af%d8%a9-matplotlib\/","name":"\u0643\u064a\u0641\u064a\u0629 \u0631\u0633\u0645 \u062e\u0637\u0648\u0637 \u0645\u062a\u0639\u062f\u062f\u0629 \u0641\u064a Matplotlib - \u0639\u0644\u0645 \u0627\u0644\u0625\u062d\u0635\u0627\u0621","isPartOf":{"@id":"https:\/\/statorials.org\/ar\/#website"},"datePublished":"2023-07-26T20:52:11+00:00","dateModified":"2023-07-26T20:52:11+00:00","author":{"@id":"https:\/\/statorials.org\/ar\/#\/schema\/person\/a0a26e65f97483429b863aae1a11e3b3"},"description":"\u064a\u0634\u0631\u062d \u0647\u0630\u0627 \u0627\u0644\u0628\u0631\u0646\u0627\u0645\u062c \u0627\u0644\u062a\u0639\u0644\u064a\u0645\u064a \u0643\u064a\u0641\u064a\u0629 \u0631\u0633\u0645 \u0648\u062a\u062e\u0635\u064a\u0635 \u062e\u0637\u0648\u0637 \u0645\u062a\u0639\u062f\u062f\u0629 \u0641\u064a Matplotlib\u060c \u0645\u0639 \u0639\u062f\u0629 \u0623\u0645\u062b\u0644\u0629.","breadcrumb":{"@id":"https:\/\/statorials.org\/ar\/%d8%b1%d8%b3%d9%85-%d8%ae%d8%b7%d9%88%d8%b7-%d9%85%d8%aa%d8%b9%d8%af%d8%af%d8%a9-matplotlib\/#breadcrumb"},"inLanguage":"azb","potentialAction":[{"@type":"ReadAction","target":["https:\/\/statorials.org\/ar\/%d8%b1%d8%b3%d9%85-%d8%ae%d8%b7%d9%88%d8%b7-%d9%85%d8%aa%d8%b9%d8%af%d8%af%d8%a9-matplotlib\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/statorials.org\/ar\/%d8%b1%d8%b3%d9%85-%d8%ae%d8%b7%d9%88%d8%b7-%d9%85%d8%aa%d8%b9%d8%af%d8%af%d8%a9-matplotlib\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\u0628\u064a\u062a","item":"https:\/\/statorials.org\/ar\/"},{"@type":"ListItem","position":2,"name":"\u0643\u064a\u0641\u064a\u0629 \u0631\u0633\u0645 \u062e\u0637\u0648\u0637 \u0645\u062a\u0639\u062f\u062f\u0629 \u0641\u064a matplotlib"}]},{"@type":"WebSite","@id":"https:\/\/statorials.org\/ar\/#website","url":"https:\/\/statorials.org\/ar\/","name":"Statorials","description":"\u062f\u0644\u064a\u0644\u0643 \u0644\u0645\u062d\u0648 \u0627\u0644\u0623\u0645\u064a\u0629 \u0627\u0644\u0625\u062d\u0635\u0627\u0626\u064a\u0629!","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/statorials.org\/ar\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"azb"},{"@type":"Person","@id":"https:\/\/statorials.org\/ar\/#\/schema\/person\/a0a26e65f97483429b863aae1a11e3b3","name":"\u062f\u0643\u062a\u0648\u0631 \u0628\u0646\u064a\u0627\u0645\u064a\u0646 \u0623\u0646\u062f\u0631\u0633\u0648\u0646","image":{"@type":"ImageObject","inLanguage":"azb","@id":"https:\/\/statorials.org\/ar\/#\/schema\/person\/image\/","url":"https:\/\/statorials.org\/ar\/wp-content\/uploads\/2023\/10\/Dr.-Benjamin-Anderson-96x96.jpg","contentUrl":"https:\/\/statorials.org\/ar\/wp-content\/uploads\/2023\/10\/Dr.-Benjamin-Anderson-96x96.jpg","caption":"\u062f\u0643\u062a\u0648\u0631 \u0628\u0646\u064a\u0627\u0645\u064a\u0646 \u0623\u0646\u062f\u0631\u0633\u0648\u0646"},"description":"\u0645\u0631\u062d\u0628\u064b\u0627\u060c \u0623\u0646\u0627 \u0628\u0646\u062c\u0627\u0645\u064a\u0646\u060c \u0623\u0633\u062a\u0627\u0630 \u0627\u0644\u0625\u062d\u0635\u0627\u0621 \u0627\u0644\u0645\u062a\u0642\u0627\u0639\u062f \u0627\u0644\u0630\u064a \u062a\u062d\u0648\u0644 \u0625\u0644\u0649 \u0645\u062f\u0631\u0633 \u0645\u062a\u062e\u0635\u0635 \u0641\u064a Statorials. \u0628\u0641\u0636\u0644 \u062e\u0628\u0631\u062a\u064a \u0627\u0644\u0648\u0627\u0633\u0639\u0629 \u0641\u064a \u0645\u062c\u0627\u0644 \u0627\u0644\u0625\u062d\u0635\u0627\u0621\u060c \u0641\u0623\u0646\u0627 \u062d\u0631\u064a\u0635 \u0639\u0644\u0649 \u0645\u0634\u0627\u0631\u0643\u0629 \u0645\u0639\u0631\u0641\u062a\u064a \u0644\u062a\u0645\u0643\u064a\u0646 \u0627\u0644\u0637\u0644\u0627\u0628 \u0645\u0646 \u062e\u0644\u0627\u0644 Statorials. \u062a\u0639\u0631\u0641 \u0623\u0643\u062b\u0631","sameAs":["https:\/\/statorials.org\/ar"]}]}},"yoast_meta":{"yoast_wpseo_title":"","yoast_wpseo_metadesc":"","yoast_wpseo_canonical":""},"_links":{"self":[{"href":"https:\/\/statorials.org\/ar\/wp-json\/wp\/v2\/posts\/1326"}],"collection":[{"href":"https:\/\/statorials.org\/ar\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/statorials.org\/ar\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/statorials.org\/ar\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/statorials.org\/ar\/wp-json\/wp\/v2\/comments?post=1326"}],"version-history":[{"count":0,"href":"https:\/\/statorials.org\/ar\/wp-json\/wp\/v2\/posts\/1326\/revisions"}],"wp:attachment":[{"href":"https:\/\/statorials.org\/ar\/wp-json\/wp\/v2\/media?parent=1326"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/statorials.org\/ar\/wp-json\/wp\/v2\/categories?post=1326"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/statorials.org\/ar\/wp-json\/wp\/v2\/tags?post=1326"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}