{"id":2585,"date":"2023-07-21T15:09:32","date_gmt":"2023-07-21T15:09:32","guid":{"rendered":"https:\/\/statorials.org\/hi\/dplyr-%e0%a4%9a%e0%a4%be%e0%a4%b2\/"},"modified":"2023-07-21T15:09:32","modified_gmt":"2023-07-21T15:09:32","slug":"dplyr-%e0%a4%9a%e0%a4%be%e0%a4%b2","status":"publish","type":"post","link":"https:\/\/statorials.org\/hi\/dplyr-%e0%a4%9a%e0%a4%be%e0%a4%b2\/","title":{"rendered":"Dplyr \u092e\u0947\u0902 \u0930\u0940\u0932\u094b\u0915\u0947\u091f() \u092b\u093c\u0902\u0915\u094d\u0936\u0928 \u0915\u093e \u0909\u092a\u092f\u094b\u0917 \u0915\u0948\u0938\u0947 \u0915\u0930\u0947\u0902 (\u0909\u0926\u093e\u0939\u0930\u0923 \u0915\u0947 \u0938\u093e\u0925)"},"content":{"rendered":"<p><\/p>\n<hr>\n<p><span style=\"color: #000000;\">\u0906\u092a \u0921\u0947\u091f\u093e \u092b\u093c\u094d\u0930\u0947\u092e \u092e\u0947\u0902 \u0915\u0949\u0932\u092e \u0938\u094d\u0925\u093f\u0924\u093f \u092c\u0926\u0932\u0928\u0947 \u0915\u0947 \u0932\u093f\u090f \u0906\u0930 \u092e\u0947\u0902 <a href=\"https:\/\/dplyr.tidyverse.org\/reference\/slice.html\">dplyr<\/a> \u092a\u0948\u0915\u0947\u091c \u0938\u0947 <a href=\"https:\/\/dplyr.tidyverse.org\/reference\/relocate.html\" target=\"_blank\" rel=\"noopener\">\u0930\u0940\u0932\u094b\u0915\u0947\u091f()<\/a> \u092b\u093c\u0902\u0915\u094d\u0936\u0928 \u0915\u093e \u0909\u092a\u092f\u094b\u0917 \u0915\u0930 \u0938\u0915\u0924\u0947 \u0939\u0948\u0902\u0964<\/span><\/p>\n<p> <span style=\"color: #000000;\">\u0915\u0949\u0932\u092e \u0915\u0940 \u0938\u094d\u0925\u093f\u0924\u093f \u092c\u0926\u0932\u0928\u0947 \u0915\u0947 \u0932\u093f\u090f \u0906\u092a \u0928\u093f\u092e\u094d\u0928 \u0935\u093f\u0927\u093f\u092f\u094b\u0902 \u0915\u093e \u0909\u092a\u092f\u094b\u0917 \u0915\u0930 \u0938\u0915\u0924\u0947 \u0939\u0948\u0902:<\/span><\/p>\n<p> <span style=\"color: #000000;\"><strong>\u0935\u093f\u0927\u093f 1: \u0915\u093f\u0938\u0940 \u0915\u0949\u0932\u092e \u0915\u094b \u0906\u0917\u0947 \u092c\u0922\u093c\u093e\u090f\u0902<\/strong><\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <strong><span style=\"color: #008080;\">#move 'x' column to front<\/span>\ndf %&gt;% relocate(x)\n<\/strong><\/pre>\n<p> <span style=\"color: #000000;\"><strong>\u0935\u093f\u0927\u093f 2: \u090f\u0915\u093e\u0927\u093f\u0915 \u0938\u094d\u0924\u0902\u092d\u094b\u0902 \u0915\u094b \u0906\u0917\u0947 \u092c\u0922\u093c\u093e\u090f\u0902<\/strong><\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <strong><span style=\"color: #008080;\">#move 'x' and 'y' columns to front<\/span>\ndf %&gt;% relocate(x, y)\n<\/strong><\/pre>\n<p> <span style=\"color: #000000;\"><strong>\u0935\u093f\u0927\u093f 3: \u0915\u0949\u0932\u092e \u0915\u094b \u0926\u0942\u0938\u0930\u0947 \u0915\u0949\u0932\u092e \u0915\u0947 \u092c\u093e\u0926 \u0915\u0940 \u0938\u094d\u0925\u093f\u0924\u093f \u092e\u0947\u0902 \u0932\u0947 \u091c\u093e\u090f\u0901<\/strong><\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <strong><span style=\"color: #008080;\">#move 'x' column to position after 'y' column\n<\/span>df %&gt;% relocate(x, . <span style=\"color: #3366ff;\">after<\/span> =y)\n<\/strong><\/pre>\n<p> <span style=\"color: #000000;\"><strong>\u0935\u093f\u0927\u093f 4: \u0915\u0949\u0932\u092e \u0915\u094b \u0926\u0942\u0938\u0930\u0947 \u0915\u0949\u0932\u092e \u0938\u0947 \u092a\u0939\u0932\u0947 \u0915\u0940 \u0938\u094d\u0925\u093f\u0924\u093f \u092e\u0947\u0902 \u0932\u0947 \u091c\u093e\u090f\u0901<\/strong><\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <strong><span style=\"color: #008080;\">#move 'x' column to position before 'y' column\n<\/span>df %&gt;% relocate(x, . <span style=\"color: #3366ff;\">before<\/span> =y)<\/strong><\/pre>\n<p> <span style=\"color: #000000;\">\u0928\u093f\u092e\u094d\u0928\u0932\u093f\u0916\u093f\u0924 \u0909\u0926\u093e\u0939\u0930\u0923 \u0926\u093f\u0916\u093e\u0924\u0947 \u0939\u0948\u0902 \u0915\u093f \u0928\u093f\u092e\u094d\u0928\u0932\u093f\u0916\u093f\u0924 \u0921\u0947\u091f\u093e \u092b\u093c\u094d\u0930\u0947\u092e \u0915\u0947 \u0938\u093e\u0925 \u092a\u094d\u0930\u0924\u094d\u092f\u0947\u0915 \u0935\u093f\u0927\u093f \u0915\u093e \u0909\u092a\u092f\u094b\u0917 \u0915\u0948\u0938\u0947 \u0915\u0930\u0947\u0902:<\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <strong><span style=\"color: #008080;\">#create dataset\n<\/span>df &lt;- data. <span style=\"color: #3366ff;\">frame<\/span> (team=c('A', 'A', 'A', 'B', 'B', 'C', 'C'),\n                 points=c(1, 2, 3, 4, 5, 6, 7),\n                 assists=c(1, 5, 2, 3, 2, 2, 0),\n                 rebounds=c(6, 6, 10, 12, 8, 8, 3))\n\n<span style=\"color: #008080;\">#view dataset\n<\/span>df\n\n  team points assists rebounds\n1 A 1 1 6\n2 A 2 5 6\n3 A 3 2 10\n4 B 4 3 12\n5 B 5 2 8\n6 C 6 2 8\n7 C 7 0 3\n<\/strong><\/pre>\n<h3> <span style=\"color: #000000;\"><strong>\u0909\u0926\u093e\u0939\u0930\u0923 1: \u090f\u0915 \u0915\u0949\u0932\u092e \u0915\u094b \u0906\u0917\u0947 \u092c\u0922\u093c\u093e\u090f\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 \u0915\u0949\u0932\u092e \u0915\u094b \u0906\u0917\u0947 \u092c\u0922\u093c\u093e\u0928\u0947 \u0915\u0947 \u0932\u093f\u090f <strong>\u0930\u0940\u0932\u094b\u0915\u0947\u091f()<\/strong> \u092b\u093c\u0902\u0915\u094d\u0936\u0928 \u0915\u093e \u0909\u092a\u092f\u094b\u0917 \u0915\u0948\u0938\u0947 \u0915\u0930\u0947\u0902:<\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <strong><span style=\"color: #008080;\">#move 'assists' column to front\n<\/span>df %&gt;% relocate(assists)\n\n  assists team points rebounds\n1 1 To 1 6\n2 5 A 2 6\n3 2 A 3 10\n4 3 B 4 12\n5 2 B 5 8\n6 2 C 6 8\n7 0 C 7 3<\/strong><\/pre>\n<h3> <span style=\"color: #000000;\"><strong>\u0909\u0926\u093e\u0939\u0930\u0923 2: \u090f\u0915\u093e\u0927\u093f\u0915 \u0938\u094d\u0924\u0902\u092d\u094b\u0902 \u0915\u094b \u0906\u0917\u0947 \u092c\u0922\u093c\u093e\u090f\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 \u090f\u0915\u093e\u0927\u093f\u0915 \u0915\u0949\u0932\u092e\u094b\u0902 \u0915\u094b \u0906\u0917\u0947 \u092c\u0922\u093c\u093e\u0928\u0947 \u0915\u0947 \u0932\u093f\u090f <strong>\u0930\u0940\u0932\u094b\u0915\u0947\u091f()<\/strong> \u092b\u093c\u0902\u0915\u094d\u0936\u0928 \u0915\u093e \u0909\u092a\u092f\u094b\u0917 \u0915\u0948\u0938\u0947 \u0915\u0930\u0947\u0902:<\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <strong><span style=\"color: #008080;\">#move 'points' and 'assists' to front\n<\/span>df %&gt;% relocate(points, assists)\n\n  points assists team rebounds\n1 1 1 A 6\n2 2 5 A 6\n3 3 2 A 10\n4 4 3 B 12\n5 5 2 B 8\n6 6 2 C 8\n7 7 0 C 3<\/strong><\/pre>\n<h3> <span style=\"color: #000000;\"><strong>\u0909\u0926\u093e\u0939\u0930\u0923 3: \u0915\u0949\u0932\u092e \u0915\u094b \u0926\u0942\u0938\u0930\u0947 \u0915\u0949\u0932\u092e \u0915\u0947 \u092c\u093e\u0926 \u0915\u0940 \u0938\u094d\u0925\u093f\u0924\u093f \u092e\u0947\u0902 \u0932\u0947 \u091c\u093e\u090f\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 \u0915\u093f\u0938\u0940 \u0915\u0949\u0932\u092e \u0915\u094b \u0926\u0942\u0938\u0930\u0947 \u0915\u0949\u0932\u092e \u0938\u0947 \u0906\u0917\u0947 \u0915\u093f\u0938\u0940 \u0935\u093f\u0936\u093f\u0937\u094d\u091f \u0938\u094d\u0925\u093e\u0928 \u092a\u0930 \u0932\u0947 \u091c\u093e\u0928\u0947 \u0915\u0947 \u0932\u093f\u090f <strong>\u0930\u0940\u0932\u094b\u0915\u0947\u091f()<\/strong> \u092b\u093c\u0902\u0915\u094d\u0936\u0928 \u0915\u093e \u0909\u092a\u092f\u094b\u0917 \u0915\u0948\u0938\u0947 \u0915\u0930\u0947\u0902:<\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <strong><span style=\"color: #008080;\">#move 'team' column to after 'assists' column\n<\/span>df %&gt;% relocate(team, . <span style=\"color: #3366ff;\">after<\/span> =assists)\n\n  points assists team rebounds\n1 1 1 A 6\n2 2 5 A 6\n3 3 2 To 10\n4 4 3 B 12\n5 5 2 B 8\n6 6 2 C 8\n7 7 0 C 3<\/strong><\/pre>\n<h3> <span style=\"color: #000000;\"><strong>\u0909\u0926\u093e\u0939\u0930\u0923 4: \u0915\u0949\u0932\u092e \u0915\u094b \u0926\u0942\u0938\u0930\u0947 \u0915\u0949\u0932\u092e \u0938\u0947 \u092a\u0939\u0932\u0947 \u0915\u0940 \u0938\u094d\u0925\u093f\u0924\u093f \u092e\u0947\u0902 \u0932\u0947 \u091c\u093e\u090f\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 \u0915\u093f\u0938\u0940 \u0915\u0949\u0932\u092e \u0915\u094b \u0926\u0942\u0938\u0930\u0947 \u0915\u0949\u0932\u092e \u0938\u0947 \u092a\u0939\u0932\u0947 \u090f\u0915 \u0935\u093f\u0936\u093f\u0937\u094d\u091f \u0938\u094d\u0925\u093e\u0928 \u092a\u0930 \u0932\u0947 \u091c\u093e\u0928\u0947 \u0915\u0947 \u0932\u093f\u090f <strong>\u0930\u0940\u0932\u094b\u0915\u0947\u091f()<\/strong> \u092b\u093c\u0902\u0915\u094d\u0936\u0928 \u0915\u093e \u0909\u092a\u092f\u094b\u0917 \u0915\u0948\u0938\u0947 \u0915\u0930\u0947\u0902:<\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <strong><span style=\"color: #008080;\">#move 'team' column to before 'rebounds' column\n<\/span>df %&gt;% relocate(team, . <span style=\"color: #3366ff;\">before<\/span> =rebounds)\n\n  points assists team rebounds\n1 1 1 A 6\n2 2 5 A 6\n3 3 2 To 10\n4 4 3 B 12\n5 5 2 B 8\n6 6 2 C 8\n7 7 0 C 3<\/strong><\/pre>\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> <span style=\"color: #000000;\">\u0928\u093f\u092e\u094d\u0928\u0932\u093f\u0916\u093f\u0924 \u091f\u094d\u092f\u0942\u091f\u094b\u0930\u093f\u092f\u0932 \u092c\u0924\u093e\u0924\u0947 \u0939\u0948\u0902 \u0915\u093f dplyr \u0915\u093e \u0909\u092a\u092f\u094b\u0917 \u0915\u0930\u0915\u0947 \u0905\u0928\u094d\u092f \u0938\u093e\u092e\u093e\u0928\u094d\u092f \u0915\u093e\u0930\u094d\u092f \u0915\u0948\u0938\u0947 \u0915\u0930\u0947\u0902:<\/span><\/p>\n<p> <a href=\"https:\/\/statorials.org\/hi\/dplyr-\u0932\u093e\u0907\u0928\u0947\u0902-\u0939\u091f\u093e\u090f\u0902\/\" target=\"_blank\" rel=\"noopener\">Dplyr \u0915\u093e \u0909\u092a\u092f\u094b\u0917 \u0915\u0930\u0915\u0947 \u092a\u0902\u0915\u094d\u0924\u093f\u092f\u094b\u0902 \u0915\u094b \u0915\u0948\u0938\u0947 \u0939\u091f\u093e\u090f\u0902<\/a><br \/> <a href=\"https:\/\/statorials.org\/hi\/\u092a\u0902\u0915\u094d\u0924\u093f\u092f\u094b\u0902-\u0915\u094b-\u0935\u094d\u092f\u0935\u0938\u094d\u0925\u093f\u0924-\u0915\u0930\u0947\u0902-r\/\" target=\"_blank\" rel=\"noopener\">Dplyr \u0915\u093e \u0909\u092a\u092f\u094b\u0917 \u0915\u0930\u0915\u0947 \u092a\u0902\u0915\u094d\u0924\u093f\u092f\u094b\u0902 \u0915\u094b \u0915\u0948\u0938\u0947 \u0935\u094d\u092f\u0935\u0938\u094d\u0925\u093f\u0924 \u0915\u0930\u0947\u0902<\/a><br \/> Dplyr \u0915\u093e \u0909\u092a\u092f\u094b\u0917 \u0915\u0930\u0915\u0947 \u0905\u0928\u0947\u0915 \u0938\u094d\u0925\u093f\u0924\u093f\u092f\u094b\u0902 \u0915\u0947 \u0906\u0927\u093e\u0930 \u092a\u0930 \u092b\u093c\u093f\u0932\u094d\u091f\u0930 \u0915\u0948\u0938\u0947 \u0915\u0930\u0947\u0902<\/p>\n","protected":false},"excerpt":{"rendered":"<p>\u0906\u092a \u0921\u0947\u091f\u093e \u092b\u093c\u094d\u0930\u0947\u092e \u092e\u0947\u0902 \u0915\u0949\u0932\u092e \u0938\u094d\u0925\u093f\u0924\u093f \u092c\u0926\u0932\u0928\u0947 \u0915\u0947 \u0932\u093f\u090f \u0906\u0930 \u092e\u0947\u0902 dplyr \u092a\u0948\u0915\u0947\u091c \u0938\u0947 \u0930\u0940\u0932\u094b\u0915\u0947\u091f() \u092b\u093c\u0902\u0915\u094d\u0936\u0928 \u0915\u093e \u0909\u092a\u092f\u094b\u0917 \u0915\u0930 \u0938\u0915\u0924\u0947 \u0939\u0948\u0902\u0964 \u0915\u0949\u0932\u092e \u0915\u0940 \u0938\u094d\u0925\u093f\u0924\u093f \u092c\u0926\u0932\u0928\u0947 \u0915\u0947 \u0932\u093f\u090f \u0906\u092a \u0928\u093f\u092e\u094d\u0928 \u0935\u093f\u0927\u093f\u092f\u094b\u0902 \u0915\u093e \u0909\u092a\u092f\u094b\u0917 \u0915\u0930 \u0938\u0915\u0924\u0947 \u0939\u0948\u0902: \u0935\u093f\u0927\u093f 1: \u0915\u093f\u0938\u0940 \u0915\u0949\u0932\u092e \u0915\u094b \u0906\u0917\u0947 \u092c\u0922\u093c\u093e\u090f\u0902 #move &#8216;x&#8217; column to front df %&gt;% relocate(x) \u0935\u093f\u0927\u093f 2: \u090f\u0915\u093e\u0927\u093f\u0915 \u0938\u094d\u0924\u0902\u092d\u094b\u0902 \u0915\u094b [&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-2585","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>dplyr \u092e\u0947\u0902 \u0930\u0940\u0932\u094b\u0915\u0947\u091f() \u092b\u093c\u0902\u0915\u094d\u0936\u0928 \u0915\u093e \u0909\u092a\u092f\u094b\u0917 \u0915\u0948\u0938\u0947 \u0915\u0930\u0947\u0902 (\u0909\u0926\u093e\u0939\u0930\u0923 \u0915\u0947 \u0938\u093e\u0925) - \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 dplyr \u092e\u0947\u0902 \u0930\u0940\u0932\u094b\u0915\u0947\u091f() \u092b\u093c\u0902\u0915\u094d\u0936\u0928 \u0915\u093e \u0909\u092a\u092f\u094b\u0917 \u0915\u0948\u0938\u0947 \u0915\u0930\u0947\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\/dplyr-\u091a\u093e\u0932\/\" \/>\n<meta property=\"og:locale\" content=\"hi_IN\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"dplyr \u092e\u0947\u0902 \u0930\u0940\u0932\u094b\u0915\u0947\u091f() \u092b\u093c\u0902\u0915\u094d\u0936\u0928 \u0915\u093e \u0909\u092a\u092f\u094b\u0917 \u0915\u0948\u0938\u0947 \u0915\u0930\u0947\u0902 (\u0909\u0926\u093e\u0939\u0930\u0923 \u0915\u0947 \u0938\u093e\u0925) - \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 dplyr \u092e\u0947\u0902 \u0930\u0940\u0932\u094b\u0915\u0947\u091f() \u092b\u093c\u0902\u0915\u094d\u0936\u0928 \u0915\u093e \u0909\u092a\u092f\u094b\u0917 \u0915\u0948\u0938\u0947 \u0915\u0930\u0947\u0902\u0964\" \/>\n<meta property=\"og:url\" content=\"https:\/\/statorials.org\/hi\/dplyr-\u091a\u093e\u0932\/\" \/>\n<meta property=\"og:site_name\" content=\"Statorials\" \/>\n<meta property=\"article:published_time\" content=\"2023-07-21T15:09:32+00:00\" \/>\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\/dplyr-%e0%a4%9a%e0%a4%be%e0%a4%b2\/\",\"url\":\"https:\/\/statorials.org\/hi\/dplyr-%e0%a4%9a%e0%a4%be%e0%a4%b2\/\",\"name\":\"dplyr \u092e\u0947\u0902 \u0930\u0940\u0932\u094b\u0915\u0947\u091f() \u092b\u093c\u0902\u0915\u094d\u0936\u0928 \u0915\u093e \u0909\u092a\u092f\u094b\u0917 \u0915\u0948\u0938\u0947 \u0915\u0930\u0947\u0902 (\u0909\u0926\u093e\u0939\u0930\u0923 \u0915\u0947 \u0938\u093e\u0925) - \u0938\u094d\u091f\u0947\u091f\u094b\u0932\u0949\u091c\u0940\",\"isPartOf\":{\"@id\":\"https:\/\/statorials.org\/hi\/#website\"},\"datePublished\":\"2023-07-21T15:09:32+00:00\",\"dateModified\":\"2023-07-21T15:09:32+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 dplyr \u092e\u0947\u0902 \u0930\u0940\u0932\u094b\u0915\u0947\u091f() \u092b\u093c\u0902\u0915\u094d\u0936\u0928 \u0915\u093e \u0909\u092a\u092f\u094b\u0917 \u0915\u0948\u0938\u0947 \u0915\u0930\u0947\u0902\u0964\",\"breadcrumb\":{\"@id\":\"https:\/\/statorials.org\/hi\/dplyr-%e0%a4%9a%e0%a4%be%e0%a4%b2\/#breadcrumb\"},\"inLanguage\":\"hi-IN\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/statorials.org\/hi\/dplyr-%e0%a4%9a%e0%a4%be%e0%a4%b2\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/statorials.org\/hi\/dplyr-%e0%a4%9a%e0%a4%be%e0%a4%b2\/#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\":\"Dplyr \u092e\u0947\u0902 \u0930\u0940\u0932\u094b\u0915\u0947\u091f() \u092b\u093c\u0902\u0915\u094d\u0936\u0928 \u0915\u093e \u0909\u092a\u092f\u094b\u0917 \u0915\u0948\u0938\u0947 \u0915\u0930\u0947\u0902 (\u0909\u0926\u093e\u0939\u0930\u0923 \u0915\u0947 \u0938\u093e\u0925)\"}]},{\"@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":"dplyr \u092e\u0947\u0902 \u0930\u0940\u0932\u094b\u0915\u0947\u091f() \u092b\u093c\u0902\u0915\u094d\u0936\u0928 \u0915\u093e \u0909\u092a\u092f\u094b\u0917 \u0915\u0948\u0938\u0947 \u0915\u0930\u0947\u0902 (\u0909\u0926\u093e\u0939\u0930\u0923 \u0915\u0947 \u0938\u093e\u0925) - \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 dplyr \u092e\u0947\u0902 \u0930\u0940\u0932\u094b\u0915\u0947\u091f() \u092b\u093c\u0902\u0915\u094d\u0936\u0928 \u0915\u093e \u0909\u092a\u092f\u094b\u0917 \u0915\u0948\u0938\u0947 \u0915\u0930\u0947\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\/dplyr-\u091a\u093e\u0932\/","og_locale":"hi_IN","og_type":"article","og_title":"dplyr \u092e\u0947\u0902 \u0930\u0940\u0932\u094b\u0915\u0947\u091f() \u092b\u093c\u0902\u0915\u094d\u0936\u0928 \u0915\u093e \u0909\u092a\u092f\u094b\u0917 \u0915\u0948\u0938\u0947 \u0915\u0930\u0947\u0902 (\u0909\u0926\u093e\u0939\u0930\u0923 \u0915\u0947 \u0938\u093e\u0925) - \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 dplyr \u092e\u0947\u0902 \u0930\u0940\u0932\u094b\u0915\u0947\u091f() \u092b\u093c\u0902\u0915\u094d\u0936\u0928 \u0915\u093e \u0909\u092a\u092f\u094b\u0917 \u0915\u0948\u0938\u0947 \u0915\u0930\u0947\u0902\u0964","og_url":"https:\/\/statorials.org\/hi\/dplyr-\u091a\u093e\u0932\/","og_site_name":"Statorials","article_published_time":"2023-07-21T15:09:32+00:00","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\/dplyr-%e0%a4%9a%e0%a4%be%e0%a4%b2\/","url":"https:\/\/statorials.org\/hi\/dplyr-%e0%a4%9a%e0%a4%be%e0%a4%b2\/","name":"dplyr \u092e\u0947\u0902 \u0930\u0940\u0932\u094b\u0915\u0947\u091f() \u092b\u093c\u0902\u0915\u094d\u0936\u0928 \u0915\u093e \u0909\u092a\u092f\u094b\u0917 \u0915\u0948\u0938\u0947 \u0915\u0930\u0947\u0902 (\u0909\u0926\u093e\u0939\u0930\u0923 \u0915\u0947 \u0938\u093e\u0925) - \u0938\u094d\u091f\u0947\u091f\u094b\u0932\u0949\u091c\u0940","isPartOf":{"@id":"https:\/\/statorials.org\/hi\/#website"},"datePublished":"2023-07-21T15:09:32+00:00","dateModified":"2023-07-21T15:09:32+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 dplyr \u092e\u0947\u0902 \u0930\u0940\u0932\u094b\u0915\u0947\u091f() \u092b\u093c\u0902\u0915\u094d\u0936\u0928 \u0915\u093e \u0909\u092a\u092f\u094b\u0917 \u0915\u0948\u0938\u0947 \u0915\u0930\u0947\u0902\u0964","breadcrumb":{"@id":"https:\/\/statorials.org\/hi\/dplyr-%e0%a4%9a%e0%a4%be%e0%a4%b2\/#breadcrumb"},"inLanguage":"hi-IN","potentialAction":[{"@type":"ReadAction","target":["https:\/\/statorials.org\/hi\/dplyr-%e0%a4%9a%e0%a4%be%e0%a4%b2\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/statorials.org\/hi\/dplyr-%e0%a4%9a%e0%a4%be%e0%a4%b2\/#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":"Dplyr \u092e\u0947\u0902 \u0930\u0940\u0932\u094b\u0915\u0947\u091f() \u092b\u093c\u0902\u0915\u094d\u0936\u0928 \u0915\u093e \u0909\u092a\u092f\u094b\u0917 \u0915\u0948\u0938\u0947 \u0915\u0930\u0947\u0902 (\u0909\u0926\u093e\u0939\u0930\u0923 \u0915\u0947 \u0938\u093e\u0925)"}]},{"@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\/2585","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=2585"}],"version-history":[{"count":0,"href":"https:\/\/statorials.org\/hi\/wp-json\/wp\/v2\/posts\/2585\/revisions"}],"wp:attachment":[{"href":"https:\/\/statorials.org\/hi\/wp-json\/wp\/v2\/media?parent=2585"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/statorials.org\/hi\/wp-json\/wp\/v2\/categories?post=2585"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/statorials.org\/hi\/wp-json\/wp\/v2\/tags?post=2585"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}