I have a dataframe with timestamp values, like this one: 2018-02-15T11:39:13.000Z I want to have it in UNIX format, using Pyspark.
I tried something like data = datasample.withColumn('timestamp_cast', datasample['timestamp'].cast('date'))
but I lose a lot of information, since I only get day/month/year when I have milliseconds information in my source.
Result: 2018-02-15
Any idea to get unix format and keep precision? Thank you!