I got the following result in pyspark I used the .discribe() function
+------+-------+
| _c0| _c1|
+------+-------+
| count|2674686|
| mean| 0.0|
|stddev| 0.0|
| min| 0|
| max| 0|
+------+-------+
i'm trying my result to converting like this
+------+-------+-------+-------+-------+
| count| mean| stddev| min| max|
+------+-------+-------+-------+-------+
|2674686| 0.0| 0.0| 0| 0|
+------+-------+-------+-------+-------+
how can i solve it? If this is hard, is it possible to change columns and rows when using the discribe() function?