I want to create a list of vector of column which don't have special characters in columns in data frame.
so in my table I have n numbers of column and I want to have a index of columns doesn't have special characters.
so for example in below data frame the output should be c(3,5)
df <- data.frame(
V1 = c('liam', 'kevin', 'steve'),
v2 = c("--","--","--"),
v3 = c(10, 4, 7),
v4 = c("--","--","--"),
v5=c(22,63,0.1))