Hello how would I round this content of table outputted by this code.
from pyspark.sql.functions import *
exprs = {x: "sum" for x in data2.columns[:4]}
data2.groupBy("Species").agg(exprs).show()
round(data2.groupBy("Species").agg(exprs),2).show() #not ok
data2.groupBy("Species").agg(exprs).show().round(2) # not ok