Created
December 18, 2020 00:51
-
-
Save taiwotman/55d8f6904f65d1423eee626ee2f3959f to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Transformation | |
df = df.withColumn("latitude", col("latitude").cast(DoubleType()))\ | |
.withColumn("longitude", col("longitude").cast(DoubleType())) | |
df.printSchema() | |
df.show(10) | |
#More Insight | |
df.filter(df.incident_number== 'F190058688').show() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment