I am running the below command where there are like 5572457 rows.
The tempField$Lat
column has data separated by comma and I want this data in different columns in a data frame.
The logic is running fine for 50000 rows which is the sample load i am using to test.
But when i use with the actual data set it doesn't run.
tempLat <- read.table(text = as.character(tempField$Lat),
sep = ",", header = FALSE, fill = TRUE)