I\'m having a big trouble on dealing with levels names of a data frame.
I have a big data frame in which one of the colums is a factor with a LOT of levels.
Call make.names with unique = TRUE on your column.
make.names
unique = TRUE
df$col_foo <- factor(make.names(df$col_foo, unique = TRUE))