dkuReadDataset() read NA values
Povilas
Registered Posts: 23 ✭✭✭✭
My dataset is full of empty values which are denoted as string "NULL". Is there any way to interpret those values as NAs when I reading dataset with dkuReadDataset()?
Same as it is with function read_excel(file_path, na=c("NULL"))
Same as it is with function read_excel(file_path, na=c("NULL"))
Answers
-
Hi,
There is no option like that in dkuReadDataset, but you should be able to do something like df[df == "NULL"] <- NA afterwards