I am trying to take columns from a DataFrame and convert it to an RDD[Vector].
DataFrame
RDD[Vector]
The problem is that I have columns with a \"dot\" in their n
If your problem is the .(dot) in the column name, you could use `(backticks) to enclose the column name.
.(dot)
`(backticks)
df.select("`col0.1`")