Not able to make data working in the Studio
Hi,
I am using Azure classic studio for ML. Reading large CSV files with 20 columns. One column has a Timestamp which becomes 2.01E+16 after I cleaned the data using Excel.
Each time I run it, it says:
[Information] In [<-.factor
(*tmp*
, ri, value = c(0L, 148L, 50L, 4L, 39L, 5L, :
[Information] invalid factor level, NA generated
[Stop] DllModuleMethod::Execute. Duration = 00:09:24.4753205
[Critical] Error: Error 0063: The following error occurred during evaluation of R script:
----------
Start of error message from R ----------
replacement has 1 row, data has 0
I used colSums to print it: colSums(is.na(test). It shows this column has 3 na VALUES in data and 2 in test.
I replace na with test[is.na(test$Timestamp),]$Timestamp<-"2.01E+16"
Still the same error.
It's so exhausting to test line by line with no way to debug it to pinpoint exactly where is the problem.
Plz help!
NWA