When I clean my data, which is called total, I need to delete rows where Column V9's string length is less than 10. Is there any function to do this?
I already tried the subset function, but I get the error mentioned below:
subset(total$V9, str_length < 10)
Error in str_length < 10 : comparison (3) is possible only for atomic and list types.