I have a data frame in pyspark. In this data frame I have column called id that is unique.
pyspark
id
Now I want to find the maximum value of
maximum
The following can be used in pyspark:
df.select(max("id")).show()