We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 537720c + 20e289b commit 0ef5a48Copy full SHA for 0ef5a48
1 file changed
data/pyspark.json
@@ -43,6 +43,10 @@
43
"definition": "Data ফিল্টার করা",
44
"code": "df.filter(df['age']>24).show()"
45
},
46
+ {
47
+ "definition": "Data lambda ফাংশন দিয়ে Sort করা",
48
+ "code": "df.sortBy(lambda x: x[1]).collect()"
49
+ },
50
{
51
"definition": "Duplicate Data ড্রপ করা",
52
"code": "df.dropDuplicates()"
@@ -99,6 +103,10 @@
99
103
"definition": "DataFrame কে RDD তে রূপান্তর করা",
100
104
"code": "rdd1 = df.rdd"
101
105
106
107
+ "definition": "Repartition করা",
108
+ "code": "df.repartition(4)"
109
102
110
111
"definition": "df এর কনটেন্ট Pandas Dataframe এ করে দেখা",
112
"code": "df.toPandas()"
@@ -121,4 +129,4 @@
121
129
}]
122
130
}
123
131
]
124
-}
132
+}
0 commit comments