I want to split the following data into three columns.
Sample column from which I want to split the data. I have thousands of rows like:
dimension116
15.3859085 | 74.0314209 | 7J7P92PJ+9H77QGCCCC
... then store in this format:
A B C
15.3859085 74.0314209 7J7P92PJ+9H77QGCCCC
Here is my example code:
ga.data$dimension116<-as.character(ga.data$dimension116)
ga.data$col<-strsplit(ga.data$dimension116, "|")
ga.data$col<-strsplit(ga.data$dimension116, "|")[1]
[[1]]
[1] "1" "3" "." "0" "4" "0" "3" "7" "1" " " "|" " " "8" "0" "." "1" "9" "3" "8" "2"
[21] "5" "7" " " "|" " " "7" "M" "5" "2" "2" "5" "R" "V" "+" "4" "G" "W" "V" "4" "X"
[41] "R" "R" "W" "R"
Also how can i reverse geo code to obtain address against the latitude(A) and longitude(B).
I went through a lot of posts none helps.
I have the api key but throws 400 bad request.
I tried through git but this appears Error: Failed to install 'unknown package' from GitHub: attempt to set an attribute on NULL
Is there simpler way rather than using git or google api.