Hi, I am a bit confused with dataframe operations. I have a function which takes a string and returns a string I want to apply this functions on all rows on a single column in my dataframe
I was thinking of the following:
jsonData.withColumn("computedField",computeString(jsonData("hse")))
BUT jsonData("hse") return a column not the row data
What am I missing here?
