{"id":1327,"date":"2023-07-26T20:52:11","date_gmt":"2023-07-26T20:52:11","guid":{"rendered":"https:\/\/statorials.org\/th\/%e0%b8%9e%e0%b8%a5%e0%b9%87%e0%b8%ad%e0%b8%95%e0%b8%ab%e0%b8%a5%e0%b8%b2%e0%b8%a2%e0%b8%9a%e0%b8%a3%e0%b8%a3%e0%b8%97%e0%b8%b1%e0%b8%94-matplotlib\/"},"modified":"2023-07-26T20:52:11","modified_gmt":"2023-07-26T20:52:11","slug":"%e0%b8%9e%e0%b8%a5%e0%b9%87%e0%b8%ad%e0%b8%95%e0%b8%ab%e0%b8%a5%e0%b8%b2%e0%b8%a2%e0%b8%9a%e0%b8%a3%e0%b8%a3%e0%b8%97%e0%b8%b1%e0%b8%94-matplotlib","status":"publish","type":"post","link":"https:\/\/statorials.org\/th\/%e0%b8%9e%e0%b8%a5%e0%b9%87%e0%b8%ad%e0%b8%95%e0%b8%ab%e0%b8%a5%e0%b8%b2%e0%b8%a2%e0%b8%9a%e0%b8%a3%e0%b8%a3%e0%b8%97%e0%b8%b1%e0%b8%94-matplotlib\/","title":{"rendered":"\u0e27\u0e34\u0e18\u0e35\u0e1e\u0e25\u0e47\u0e2d\u0e15\u0e2b\u0e25\u0e32\u0e22\u0e1a\u0e23\u0e23\u0e17\u0e31\u0e14\u0e43\u0e19 matplotlib"},"content":{"rendered":"<p><\/p>\n<hr>\n<p><span style=\"color: #000000;\">\u0e04\u0e38\u0e13\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16\u0e41\u0e2a\u0e14\u0e07\u0e2b\u0e25\u0e32\u0e22\u0e1a\u0e23\u0e23\u0e17\u0e31\u0e14\u0e43\u0e19\u0e1e\u0e25\u0e47\u0e2d\u0e15 Matplotlib \u0e40\u0e14\u0e35\u0e22\u0e27\u0e44\u0e14\u0e49\u0e42\u0e14\u0e22\u0e43\u0e0a\u0e49\u0e44\u0e27\u0e22\u0e32\u0e01\u0e23\u0e13\u0e4c\u0e15\u0e48\u0e2d\u0e44\u0e1b\u0e19\u0e35\u0e49:<\/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> <span style=\"color: #000000;\">\u0e1a\u0e17\u0e0a\u0e48\u0e27\u0e22\u0e2a\u0e2d\u0e19\u0e19\u0e35\u0e49\u0e43\u0e2b\u0e49\u0e15\u0e31\u0e27\u0e2d\u0e22\u0e48\u0e32\u0e07\u0e27\u0e34\u0e18\u0e35\u0e01\u0e32\u0e23\u0e1e\u0e25\u0e47\u0e2d\u0e15\u0e2b\u0e25\u0e32\u0e22\u0e1a\u0e23\u0e23\u0e17\u0e31\u0e14\u0e43\u0e19\u0e41\u0e1c\u0e19\u0e20\u0e39\u0e21\u0e34\u0e42\u0e14\u0e22\u0e43\u0e0a\u0e49 Pandas DataFrame \u0e15\u0e48\u0e2d\u0e44\u0e1b\u0e19\u0e35\u0e49:<\/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> <span style=\"color: #000000;\"><strong>\u0e1e\u0e25\u0e47\u0e2d\u0e15\u0e2b\u0e25\u0e32\u0e22\u0e1a\u0e23\u0e23\u0e17\u0e31\u0e14\u0e43\u0e19 Matplotlib<\/strong><\/span><\/h3>\n<p> <span style=\"color: #000000;\">\u0e23\u0e2b\u0e31\u0e2a\u0e15\u0e48\u0e2d\u0e44\u0e1b\u0e19\u0e35\u0e49\u0e41\u0e2a\u0e14\u0e07\u0e27\u0e34\u0e18\u0e35\u0e01\u0e32\u0e23\u0e25\u0e07\u0e08\u0e38\u0e14\u0e2a\u0e32\u0e21\u0e1a\u0e23\u0e23\u0e17\u0e31\u0e14\u0e41\u0e15\u0e48\u0e25\u0e30\u0e1a\u0e23\u0e23\u0e17\u0e31\u0e14\u0e43\u0e19\u0e08\u0e38\u0e14\u0e40\u0e14\u0e35\u0e22\u0e27\u0e43\u0e19 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><img decoding=\"async\" loading=\"lazy\" class=\"aligncenter wp-image-12965 \" src=\"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/multmatplotlib1.png\" alt=\"\u0e2b\u0e25\u0e32\u0e22\u0e1a\u0e23\u0e23\u0e17\u0e31\u0e14\u0e43\u0e19\u0e41\u0e1c\u0e19\u0e20\u0e39\u0e21\u0e34 Matplotlib\" width=\"453\" height=\"391\" srcset=\"\" sizes=\"auto, \"><\/p>\n<h3> <span style=\"color: #000000;\"><strong>\u0e1b\u0e23\u0e31\u0e1a\u0e41\u0e15\u0e48\u0e07\u0e40\u0e2a\u0e49\u0e19\u0e43\u0e19 Matplotlib<\/strong><\/span><\/h3>\n<p> <span style=\"color: #000000;\">\u0e04\u0e38\u0e13\u0e22\u0e31\u0e07\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16\u0e1b\u0e23\u0e31\u0e1a\u0e41\u0e15\u0e48\u0e07\u0e2a\u0e35 \u0e2a\u0e44\u0e15\u0e25\u0e4c \u0e41\u0e25\u0e30\u0e04\u0e27\u0e32\u0e21\u0e01\u0e27\u0e49\u0e32\u0e07\u0e02\u0e2d\u0e07\u0e41\u0e15\u0e48\u0e25\u0e30\u0e1a\u0e23\u0e23\u0e17\u0e31\u0e14\u0e44\u0e14\u0e49:<\/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><img decoding=\"async\" loading=\"lazy\" class=\"aligncenter wp-image-12966 \" src=\"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/multmatplotlib2.png\" alt=\"\u0e1b\u0e23\u0e31\u0e1a\u0e41\u0e15\u0e48\u0e07\u0e2b\u0e25\u0e32\u0e22\u0e1a\u0e23\u0e23\u0e17\u0e31\u0e14\u0e43\u0e19 Matplotlib\" width=\"438\" height=\"368\" srcset=\"\" sizes=\"auto, \"><\/p>\n<h3> <span style=\"color: #000000;\"><strong>\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e04\u0e33\u0e2d\u0e18\u0e34\u0e1a\u0e32\u0e22\u0e43\u0e19 Matplotlib<\/strong><\/span><\/h3>\n<p> <span style=\"color: #000000;\">\u0e04\u0e38\u0e13\u0e22\u0e31\u0e07\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e04\u0e33\u0e1a\u0e23\u0e23\u0e22\u0e32\u0e22\u0e40\u0e1e\u0e37\u0e48\u0e2d\u0e41\u0e22\u0e01\u0e1a\u0e23\u0e23\u0e17\u0e31\u0e14\u0e44\u0e14\u0e49:<\/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><img decoding=\"async\" loading=\"lazy\" class=\"aligncenter wp-image-12967 \" src=\"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/multmatplotlib3.png\" alt=\"\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e04\u0e33\u0e2d\u0e18\u0e34\u0e1a\u0e32\u0e22\u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e2b\u0e25\u0e32\u0e22\u0e1a\u0e23\u0e23\u0e17\u0e31\u0e14\u0e43\u0e19 Matplotlib\" width=\"449\" height=\"379\" srcset=\"\" sizes=\"auto, \"><\/p>\n<h3> <span style=\"color: #000000;\"><strong>\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e1b\u0e49\u0e32\u0e22\u0e01\u0e33\u0e01\u0e31\u0e1a\u0e41\u0e01\u0e19\u0e41\u0e25\u0e30\u0e0a\u0e37\u0e48\u0e2d\u0e43\u0e19 Matplotlib<\/strong><\/span><\/h3>\n<p> <span style=\"color: #000000;\">\u0e2a\u0e38\u0e14\u0e17\u0e49\u0e32\u0e22 \u0e04\u0e38\u0e13\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e1b\u0e49\u0e32\u0e22\u0e01\u0e33\u0e01\u0e31\u0e1a\u0e41\u0e01\u0e19\u0e41\u0e25\u0e30\u0e0a\u0e37\u0e48\u0e2d\u0e40\u0e23\u0e37\u0e48\u0e2d\u0e07\u0e40\u0e1e\u0e37\u0e48\u0e2d\u0e17\u0e33\u0e43\u0e2b\u0e49\u0e1e\u0e25\u0e47\u0e2d\u0e15\u0e2a\u0e21\u0e1a\u0e39\u0e23\u0e13\u0e4c\u0e44\u0e14\u0e49:<\/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><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=\"auto, \"><\/p>\n<p> <span style=\"color: #000000;\"><em>\u0e04\u0e38\u0e13\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16\u0e04\u0e49\u0e19\u0e2b\u0e32\u0e1a\u0e17\u0e0a\u0e48\u0e27\u0e22\u0e2a\u0e2d\u0e19 Matplotlib \u0e40\u0e1e\u0e34\u0e48\u0e21\u0e40\u0e15\u0e34\u0e21 <a href=\"https:\/\/statorials.org\" target=\"_blank\" rel=\"noopener\">\u0e44\u0e14\u0e49\u0e17\u0e35\u0e48\u0e19\u0e35\u0e48<\/a><\/em><\/span><\/p>\n","protected":false},"excerpt":{"rendered":"<p>\u0e04\u0e38\u0e13\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16\u0e41\u0e2a\u0e14\u0e07\u0e2b\u0e25\u0e32\u0e22\u0e1a\u0e23\u0e23\u0e17\u0e31\u0e14\u0e43\u0e19\u0e1e\u0e25\u0e47\u0e2d\u0e15 Matplotlib \u0e40\u0e14\u0e35\u0e22\u0e27\u0e44\u0e14\u0e49\u0e42\u0e14\u0e22\u0e43\u0e0a [&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-1327","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>\u0e27\u0e34\u0e18\u0e35\u0e1e\u0e25\u0e47\u0e2d\u0e15\u0e2b\u0e25\u0e32\u0e22\u0e1a\u0e23\u0e23\u0e17\u0e31\u0e14\u0e43\u0e19 Matplotlib - Statology<\/title>\n<meta name=\"description\" content=\"\u0e1a\u0e17\u0e0a\u0e48\u0e27\u0e22\u0e2a\u0e2d\u0e19\u0e19\u0e35\u0e49\u0e08\u0e30\u0e2d\u0e18\u0e34\u0e1a\u0e32\u0e22\u0e27\u0e34\u0e18\u0e35\u0e01\u0e32\u0e23\u0e25\u0e07\u0e08\u0e38\u0e14\u0e41\u0e25\u0e30\u0e1b\u0e23\u0e31\u0e1a\u0e41\u0e15\u0e48\u0e07\u0e2b\u0e25\u0e32\u0e22\u0e1a\u0e23\u0e23\u0e17\u0e31\u0e14\u0e43\u0e19 Matplotlib \u0e1e\u0e23\u0e49\u0e2d\u0e21\u0e15\u0e31\u0e27\u0e2d\u0e22\u0e48\u0e32\u0e07\u0e21\u0e32\u0e01\u0e21\u0e32\u0e22\" \/>\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\/th\/\u0e1e\u0e25\u0e47\u0e2d\u0e15\u0e2b\u0e25\u0e32\u0e22\u0e1a\u0e23\u0e23\u0e17\u0e31\u0e14-matplotlib\/\" \/>\n<meta property=\"og:locale\" content=\"th_TH\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"\u0e27\u0e34\u0e18\u0e35\u0e1e\u0e25\u0e47\u0e2d\u0e15\u0e2b\u0e25\u0e32\u0e22\u0e1a\u0e23\u0e23\u0e17\u0e31\u0e14\u0e43\u0e19 Matplotlib - Statology\" \/>\n<meta property=\"og:description\" content=\"\u0e1a\u0e17\u0e0a\u0e48\u0e27\u0e22\u0e2a\u0e2d\u0e19\u0e19\u0e35\u0e49\u0e08\u0e30\u0e2d\u0e18\u0e34\u0e1a\u0e32\u0e22\u0e27\u0e34\u0e18\u0e35\u0e01\u0e32\u0e23\u0e25\u0e07\u0e08\u0e38\u0e14\u0e41\u0e25\u0e30\u0e1b\u0e23\u0e31\u0e1a\u0e41\u0e15\u0e48\u0e07\u0e2b\u0e25\u0e32\u0e22\u0e1a\u0e23\u0e23\u0e17\u0e31\u0e14\u0e43\u0e19 Matplotlib \u0e1e\u0e23\u0e49\u0e2d\u0e21\u0e15\u0e31\u0e27\u0e2d\u0e22\u0e48\u0e32\u0e07\u0e21\u0e32\u0e01\u0e21\u0e32\u0e22\" \/>\n<meta property=\"og:url\" content=\"https:\/\/statorials.org\/th\/\u0e1e\u0e25\u0e47\u0e2d\u0e15\u0e2b\u0e25\u0e32\u0e22\u0e1a\u0e23\u0e23\u0e17\u0e31\u0e14-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=\"\u0e14\u0e23.\u0e40\u0e1a\u0e19\u0e08\u0e32\u0e21\u0e34\u0e19 \u0e41\u0e2d\u0e19\u0e40\u0e14\u0e2d\u0e23\u0e4c\u0e2a\u0e31\u0e19\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"\u0e14\u0e23.\u0e40\u0e1a\u0e19\u0e08\u0e32\u0e21\u0e34\u0e19 \u0e41\u0e2d\u0e19\u0e40\u0e14\u0e2d\u0e23\u0e4c\u0e2a\u0e31\u0e19\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 \u0e19\u0e32\u0e17\u0e35\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/statorials.org\/th\/%e0%b8%9e%e0%b8%a5%e0%b9%87%e0%b8%ad%e0%b8%95%e0%b8%ab%e0%b8%a5%e0%b8%b2%e0%b8%a2%e0%b8%9a%e0%b8%a3%e0%b8%a3%e0%b8%97%e0%b8%b1%e0%b8%94-matplotlib\/\",\"url\":\"https:\/\/statorials.org\/th\/%e0%b8%9e%e0%b8%a5%e0%b9%87%e0%b8%ad%e0%b8%95%e0%b8%ab%e0%b8%a5%e0%b8%b2%e0%b8%a2%e0%b8%9a%e0%b8%a3%e0%b8%a3%e0%b8%97%e0%b8%b1%e0%b8%94-matplotlib\/\",\"name\":\"\u0e27\u0e34\u0e18\u0e35\u0e1e\u0e25\u0e47\u0e2d\u0e15\u0e2b\u0e25\u0e32\u0e22\u0e1a\u0e23\u0e23\u0e17\u0e31\u0e14\u0e43\u0e19 Matplotlib - Statology\",\"isPartOf\":{\"@id\":\"https:\/\/statorials.org\/th\/#website\"},\"datePublished\":\"2023-07-26T20:52:11+00:00\",\"dateModified\":\"2023-07-26T20:52:11+00:00\",\"author\":{\"@id\":\"https:\/\/statorials.org\/th\/#\/schema\/person\/7c9bb3d0f799d0f1b17883495e1de332\"},\"description\":\"\u0e1a\u0e17\u0e0a\u0e48\u0e27\u0e22\u0e2a\u0e2d\u0e19\u0e19\u0e35\u0e49\u0e08\u0e30\u0e2d\u0e18\u0e34\u0e1a\u0e32\u0e22\u0e27\u0e34\u0e18\u0e35\u0e01\u0e32\u0e23\u0e25\u0e07\u0e08\u0e38\u0e14\u0e41\u0e25\u0e30\u0e1b\u0e23\u0e31\u0e1a\u0e41\u0e15\u0e48\u0e07\u0e2b\u0e25\u0e32\u0e22\u0e1a\u0e23\u0e23\u0e17\u0e31\u0e14\u0e43\u0e19 Matplotlib \u0e1e\u0e23\u0e49\u0e2d\u0e21\u0e15\u0e31\u0e27\u0e2d\u0e22\u0e48\u0e32\u0e07\u0e21\u0e32\u0e01\u0e21\u0e32\u0e22\",\"breadcrumb\":{\"@id\":\"https:\/\/statorials.org\/th\/%e0%b8%9e%e0%b8%a5%e0%b9%87%e0%b8%ad%e0%b8%95%e0%b8%ab%e0%b8%a5%e0%b8%b2%e0%b8%a2%e0%b8%9a%e0%b8%a3%e0%b8%a3%e0%b8%97%e0%b8%b1%e0%b8%94-matplotlib\/#breadcrumb\"},\"inLanguage\":\"th\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/statorials.org\/th\/%e0%b8%9e%e0%b8%a5%e0%b9%87%e0%b8%ad%e0%b8%95%e0%b8%ab%e0%b8%a5%e0%b8%b2%e0%b8%a2%e0%b8%9a%e0%b8%a3%e0%b8%a3%e0%b8%97%e0%b8%b1%e0%b8%94-matplotlib\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/statorials.org\/th\/%e0%b8%9e%e0%b8%a5%e0%b9%87%e0%b8%ad%e0%b8%95%e0%b8%ab%e0%b8%a5%e0%b8%b2%e0%b8%a2%e0%b8%9a%e0%b8%a3%e0%b8%a3%e0%b8%97%e0%b8%b1%e0%b8%94-matplotlib\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\u0e1a\u0e49\u0e32\u0e19\",\"item\":\"https:\/\/statorials.org\/th\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"\u0e27\u0e34\u0e18\u0e35\u0e1e\u0e25\u0e47\u0e2d\u0e15\u0e2b\u0e25\u0e32\u0e22\u0e1a\u0e23\u0e23\u0e17\u0e31\u0e14\u0e43\u0e19 matplotlib\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/statorials.org\/th\/#website\",\"url\":\"https:\/\/statorials.org\/th\/\",\"name\":\"Statorials\",\"description\":\"\u0e04\u0e33\u0e41\u0e19\u0e30\u0e19\u0e33\u0e02\u0e2d\u0e07\u0e04\u0e38\u0e13\u0e40\u0e01\u0e35\u0e48\u0e22\u0e27\u0e01\u0e31\u0e1a\u0e04\u0e27\u0e32\u0e21\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16\u0e17\u0e32\u0e07\u0e2a\u0e16\u0e34\u0e15\u0e34!\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/statorials.org\/th\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"th\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/statorials.org\/th\/#\/schema\/person\/7c9bb3d0f799d0f1b17883495e1de332\",\"name\":\"\u0e14\u0e23.\u0e40\u0e1a\u0e19\u0e08\u0e32\u0e21\u0e34\u0e19 \u0e41\u0e2d\u0e19\u0e40\u0e14\u0e2d\u0e23\u0e4c\u0e2a\u0e31\u0e19\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"th\",\"@id\":\"https:\/\/statorials.org\/th\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/statorials.org\/th\/wp-content\/uploads\/2023\/11\/Dr.-Benjamin-Anderson-96x96.jpg\",\"contentUrl\":\"https:\/\/statorials.org\/th\/wp-content\/uploads\/2023\/11\/Dr.-Benjamin-Anderson-96x96.jpg\",\"caption\":\"\u0e14\u0e23.\u0e40\u0e1a\u0e19\u0e08\u0e32\u0e21\u0e34\u0e19 \u0e41\u0e2d\u0e19\u0e40\u0e14\u0e2d\u0e23\u0e4c\u0e2a\u0e31\u0e19\"},\"description\":\"\u0e2a\u0e27\u0e31\u0e2a\u0e14\u0e35 \u0e09\u0e31\u0e19\u0e0a\u0e37\u0e48\u0e2d\u0e40\u0e1a\u0e19\u0e08\u0e32\u0e21\u0e34\u0e19 \u0e28\u0e32\u0e2a\u0e15\u0e23\u0e32\u0e08\u0e32\u0e23\u0e22\u0e4c\u0e2a\u0e16\u0e34\u0e15\u0e34\u0e40\u0e01\u0e29\u0e35\u0e22\u0e13\u0e2d\u0e32\u0e22\u0e38\u0e41\u0e25\u0e49\u0e27 \u0e41\u0e25\u0e30\u0e1c\u0e31\u0e19\u0e15\u0e31\u0e27\u0e21\u0e32\u0e40\u0e1b\u0e47\u0e19\u0e04\u0e23\u0e39\u0e2a\u0e2d\u0e19\u0e2a\u0e16\u0e34\u0e15\u0e34\u0e42\u0e14\u0e22\u0e40\u0e09\u0e1e\u0e32\u0e30 \u0e14\u0e49\u0e27\u0e22\u0e1b\u0e23\u0e30\u0e2a\u0e1a\u0e01\u0e32\u0e23\u0e13\u0e4c\u0e41\u0e25\u0e30\u0e04\u0e27\u0e32\u0e21\u0e40\u0e0a\u0e35\u0e48\u0e22\u0e27\u0e0a\u0e32\u0e0d\u0e17\u0e35\u0e48\u0e01\u0e27\u0e49\u0e32\u0e07\u0e02\u0e27\u0e32\u0e07\u0e43\u0e19\u0e2a\u0e32\u0e02\u0e32\u0e2a\u0e16\u0e34\u0e15\u0e34 \u0e09\u0e31\u0e19\u0e01\u0e23\u0e30\u0e15\u0e37\u0e2d\u0e23\u0e37\u0e2d\u0e23\u0e49\u0e19\u0e17\u0e35\u0e48\u0e08\u0e30\u0e41\u0e1a\u0e48\u0e07\u0e1b\u0e31\u0e19\u0e04\u0e27\u0e32\u0e21\u0e23\u0e39\u0e49\u0e02\u0e2d\u0e07\u0e09\u0e31\u0e19\u0e40\u0e1e\u0e37\u0e48\u0e2d\u0e40\u0e2a\u0e23\u0e34\u0e21\u0e28\u0e31\u0e01\u0e22\u0e20\u0e32\u0e1e\u0e19\u0e31\u0e01\u0e40\u0e23\u0e35\u0e22\u0e19\u0e1c\u0e48\u0e32\u0e19 Statorials. \u0e23\u0e39\u0e49\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e40\u0e15\u0e34\u0e21\",\"sameAs\":[\"https:\/\/statorials.org\/th\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"\u0e27\u0e34\u0e18\u0e35\u0e1e\u0e25\u0e47\u0e2d\u0e15\u0e2b\u0e25\u0e32\u0e22\u0e1a\u0e23\u0e23\u0e17\u0e31\u0e14\u0e43\u0e19 Matplotlib - Statology","description":"\u0e1a\u0e17\u0e0a\u0e48\u0e27\u0e22\u0e2a\u0e2d\u0e19\u0e19\u0e35\u0e49\u0e08\u0e30\u0e2d\u0e18\u0e34\u0e1a\u0e32\u0e22\u0e27\u0e34\u0e18\u0e35\u0e01\u0e32\u0e23\u0e25\u0e07\u0e08\u0e38\u0e14\u0e41\u0e25\u0e30\u0e1b\u0e23\u0e31\u0e1a\u0e41\u0e15\u0e48\u0e07\u0e2b\u0e25\u0e32\u0e22\u0e1a\u0e23\u0e23\u0e17\u0e31\u0e14\u0e43\u0e19 Matplotlib \u0e1e\u0e23\u0e49\u0e2d\u0e21\u0e15\u0e31\u0e27\u0e2d\u0e22\u0e48\u0e32\u0e07\u0e21\u0e32\u0e01\u0e21\u0e32\u0e22","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\/th\/\u0e1e\u0e25\u0e47\u0e2d\u0e15\u0e2b\u0e25\u0e32\u0e22\u0e1a\u0e23\u0e23\u0e17\u0e31\u0e14-matplotlib\/","og_locale":"th_TH","og_type":"article","og_title":"\u0e27\u0e34\u0e18\u0e35\u0e1e\u0e25\u0e47\u0e2d\u0e15\u0e2b\u0e25\u0e32\u0e22\u0e1a\u0e23\u0e23\u0e17\u0e31\u0e14\u0e43\u0e19 Matplotlib - Statology","og_description":"\u0e1a\u0e17\u0e0a\u0e48\u0e27\u0e22\u0e2a\u0e2d\u0e19\u0e19\u0e35\u0e49\u0e08\u0e30\u0e2d\u0e18\u0e34\u0e1a\u0e32\u0e22\u0e27\u0e34\u0e18\u0e35\u0e01\u0e32\u0e23\u0e25\u0e07\u0e08\u0e38\u0e14\u0e41\u0e25\u0e30\u0e1b\u0e23\u0e31\u0e1a\u0e41\u0e15\u0e48\u0e07\u0e2b\u0e25\u0e32\u0e22\u0e1a\u0e23\u0e23\u0e17\u0e31\u0e14\u0e43\u0e19 Matplotlib \u0e1e\u0e23\u0e49\u0e2d\u0e21\u0e15\u0e31\u0e27\u0e2d\u0e22\u0e48\u0e32\u0e07\u0e21\u0e32\u0e01\u0e21\u0e32\u0e22","og_url":"https:\/\/statorials.org\/th\/\u0e1e\u0e25\u0e47\u0e2d\u0e15\u0e2b\u0e25\u0e32\u0e22\u0e1a\u0e23\u0e23\u0e17\u0e31\u0e14-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":"\u0e14\u0e23.\u0e40\u0e1a\u0e19\u0e08\u0e32\u0e21\u0e34\u0e19 \u0e41\u0e2d\u0e19\u0e40\u0e14\u0e2d\u0e23\u0e4c\u0e2a\u0e31\u0e19","twitter_card":"summary_large_image","twitter_misc":{"Written by":"\u0e14\u0e23.\u0e40\u0e1a\u0e19\u0e08\u0e32\u0e21\u0e34\u0e19 \u0e41\u0e2d\u0e19\u0e40\u0e14\u0e2d\u0e23\u0e4c\u0e2a\u0e31\u0e19","Est. reading time":"2 \u0e19\u0e32\u0e17\u0e35"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/statorials.org\/th\/%e0%b8%9e%e0%b8%a5%e0%b9%87%e0%b8%ad%e0%b8%95%e0%b8%ab%e0%b8%a5%e0%b8%b2%e0%b8%a2%e0%b8%9a%e0%b8%a3%e0%b8%a3%e0%b8%97%e0%b8%b1%e0%b8%94-matplotlib\/","url":"https:\/\/statorials.org\/th\/%e0%b8%9e%e0%b8%a5%e0%b9%87%e0%b8%ad%e0%b8%95%e0%b8%ab%e0%b8%a5%e0%b8%b2%e0%b8%a2%e0%b8%9a%e0%b8%a3%e0%b8%a3%e0%b8%97%e0%b8%b1%e0%b8%94-matplotlib\/","name":"\u0e27\u0e34\u0e18\u0e35\u0e1e\u0e25\u0e47\u0e2d\u0e15\u0e2b\u0e25\u0e32\u0e22\u0e1a\u0e23\u0e23\u0e17\u0e31\u0e14\u0e43\u0e19 Matplotlib - Statology","isPartOf":{"@id":"https:\/\/statorials.org\/th\/#website"},"datePublished":"2023-07-26T20:52:11+00:00","dateModified":"2023-07-26T20:52:11+00:00","author":{"@id":"https:\/\/statorials.org\/th\/#\/schema\/person\/7c9bb3d0f799d0f1b17883495e1de332"},"description":"\u0e1a\u0e17\u0e0a\u0e48\u0e27\u0e22\u0e2a\u0e2d\u0e19\u0e19\u0e35\u0e49\u0e08\u0e30\u0e2d\u0e18\u0e34\u0e1a\u0e32\u0e22\u0e27\u0e34\u0e18\u0e35\u0e01\u0e32\u0e23\u0e25\u0e07\u0e08\u0e38\u0e14\u0e41\u0e25\u0e30\u0e1b\u0e23\u0e31\u0e1a\u0e41\u0e15\u0e48\u0e07\u0e2b\u0e25\u0e32\u0e22\u0e1a\u0e23\u0e23\u0e17\u0e31\u0e14\u0e43\u0e19 Matplotlib \u0e1e\u0e23\u0e49\u0e2d\u0e21\u0e15\u0e31\u0e27\u0e2d\u0e22\u0e48\u0e32\u0e07\u0e21\u0e32\u0e01\u0e21\u0e32\u0e22","breadcrumb":{"@id":"https:\/\/statorials.org\/th\/%e0%b8%9e%e0%b8%a5%e0%b9%87%e0%b8%ad%e0%b8%95%e0%b8%ab%e0%b8%a5%e0%b8%b2%e0%b8%a2%e0%b8%9a%e0%b8%a3%e0%b8%a3%e0%b8%97%e0%b8%b1%e0%b8%94-matplotlib\/#breadcrumb"},"inLanguage":"th","potentialAction":[{"@type":"ReadAction","target":["https:\/\/statorials.org\/th\/%e0%b8%9e%e0%b8%a5%e0%b9%87%e0%b8%ad%e0%b8%95%e0%b8%ab%e0%b8%a5%e0%b8%b2%e0%b8%a2%e0%b8%9a%e0%b8%a3%e0%b8%a3%e0%b8%97%e0%b8%b1%e0%b8%94-matplotlib\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/statorials.org\/th\/%e0%b8%9e%e0%b8%a5%e0%b9%87%e0%b8%ad%e0%b8%95%e0%b8%ab%e0%b8%a5%e0%b8%b2%e0%b8%a2%e0%b8%9a%e0%b8%a3%e0%b8%a3%e0%b8%97%e0%b8%b1%e0%b8%94-matplotlib\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\u0e1a\u0e49\u0e32\u0e19","item":"https:\/\/statorials.org\/th\/"},{"@type":"ListItem","position":2,"name":"\u0e27\u0e34\u0e18\u0e35\u0e1e\u0e25\u0e47\u0e2d\u0e15\u0e2b\u0e25\u0e32\u0e22\u0e1a\u0e23\u0e23\u0e17\u0e31\u0e14\u0e43\u0e19 matplotlib"}]},{"@type":"WebSite","@id":"https:\/\/statorials.org\/th\/#website","url":"https:\/\/statorials.org\/th\/","name":"Statorials","description":"\u0e04\u0e33\u0e41\u0e19\u0e30\u0e19\u0e33\u0e02\u0e2d\u0e07\u0e04\u0e38\u0e13\u0e40\u0e01\u0e35\u0e48\u0e22\u0e27\u0e01\u0e31\u0e1a\u0e04\u0e27\u0e32\u0e21\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16\u0e17\u0e32\u0e07\u0e2a\u0e16\u0e34\u0e15\u0e34!","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/statorials.org\/th\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"th"},{"@type":"Person","@id":"https:\/\/statorials.org\/th\/#\/schema\/person\/7c9bb3d0f799d0f1b17883495e1de332","name":"\u0e14\u0e23.\u0e40\u0e1a\u0e19\u0e08\u0e32\u0e21\u0e34\u0e19 \u0e41\u0e2d\u0e19\u0e40\u0e14\u0e2d\u0e23\u0e4c\u0e2a\u0e31\u0e19","image":{"@type":"ImageObject","inLanguage":"th","@id":"https:\/\/statorials.org\/th\/#\/schema\/person\/image\/","url":"https:\/\/statorials.org\/th\/wp-content\/uploads\/2023\/11\/Dr.-Benjamin-Anderson-96x96.jpg","contentUrl":"https:\/\/statorials.org\/th\/wp-content\/uploads\/2023\/11\/Dr.-Benjamin-Anderson-96x96.jpg","caption":"\u0e14\u0e23.\u0e40\u0e1a\u0e19\u0e08\u0e32\u0e21\u0e34\u0e19 \u0e41\u0e2d\u0e19\u0e40\u0e14\u0e2d\u0e23\u0e4c\u0e2a\u0e31\u0e19"},"description":"\u0e2a\u0e27\u0e31\u0e2a\u0e14\u0e35 \u0e09\u0e31\u0e19\u0e0a\u0e37\u0e48\u0e2d\u0e40\u0e1a\u0e19\u0e08\u0e32\u0e21\u0e34\u0e19 \u0e28\u0e32\u0e2a\u0e15\u0e23\u0e32\u0e08\u0e32\u0e23\u0e22\u0e4c\u0e2a\u0e16\u0e34\u0e15\u0e34\u0e40\u0e01\u0e29\u0e35\u0e22\u0e13\u0e2d\u0e32\u0e22\u0e38\u0e41\u0e25\u0e49\u0e27 \u0e41\u0e25\u0e30\u0e1c\u0e31\u0e19\u0e15\u0e31\u0e27\u0e21\u0e32\u0e40\u0e1b\u0e47\u0e19\u0e04\u0e23\u0e39\u0e2a\u0e2d\u0e19\u0e2a\u0e16\u0e34\u0e15\u0e34\u0e42\u0e14\u0e22\u0e40\u0e09\u0e1e\u0e32\u0e30 \u0e14\u0e49\u0e27\u0e22\u0e1b\u0e23\u0e30\u0e2a\u0e1a\u0e01\u0e32\u0e23\u0e13\u0e4c\u0e41\u0e25\u0e30\u0e04\u0e27\u0e32\u0e21\u0e40\u0e0a\u0e35\u0e48\u0e22\u0e27\u0e0a\u0e32\u0e0d\u0e17\u0e35\u0e48\u0e01\u0e27\u0e49\u0e32\u0e07\u0e02\u0e27\u0e32\u0e07\u0e43\u0e19\u0e2a\u0e32\u0e02\u0e32\u0e2a\u0e16\u0e34\u0e15\u0e34 \u0e09\u0e31\u0e19\u0e01\u0e23\u0e30\u0e15\u0e37\u0e2d\u0e23\u0e37\u0e2d\u0e23\u0e49\u0e19\u0e17\u0e35\u0e48\u0e08\u0e30\u0e41\u0e1a\u0e48\u0e07\u0e1b\u0e31\u0e19\u0e04\u0e27\u0e32\u0e21\u0e23\u0e39\u0e49\u0e02\u0e2d\u0e07\u0e09\u0e31\u0e19\u0e40\u0e1e\u0e37\u0e48\u0e2d\u0e40\u0e2a\u0e23\u0e34\u0e21\u0e28\u0e31\u0e01\u0e22\u0e20\u0e32\u0e1e\u0e19\u0e31\u0e01\u0e40\u0e23\u0e35\u0e22\u0e19\u0e1c\u0e48\u0e32\u0e19 Statorials. \u0e23\u0e39\u0e49\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e40\u0e15\u0e34\u0e21","sameAs":["https:\/\/statorials.org\/th"]}]}},"yoast_meta":{"yoast_wpseo_title":"","yoast_wpseo_metadesc":"","yoast_wpseo_canonical":""},"_links":{"self":[{"href":"https:\/\/statorials.org\/th\/wp-json\/wp\/v2\/posts\/1327","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/statorials.org\/th\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/statorials.org\/th\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/statorials.org\/th\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/statorials.org\/th\/wp-json\/wp\/v2\/comments?post=1327"}],"version-history":[{"count":0,"href":"https:\/\/statorials.org\/th\/wp-json\/wp\/v2\/posts\/1327\/revisions"}],"wp:attachment":[{"href":"https:\/\/statorials.org\/th\/wp-json\/wp\/v2\/media?parent=1327"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/statorials.org\/th\/wp-json\/wp\/v2\/categories?post=1327"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/statorials.org\/th\/wp-json\/wp\/v2\/tags?post=1327"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}