nice_names {clickR} | R Documentation |
Changes names of a data frame to ease work with them
nice_names(x, track = TRUE)
x |
A data.frame |
track |
Track changes? |
The input data.frame x
with the fixed names
d <- data.frame('Variable 1'=NA, '% Response'=NA, ' Variable 3'=NA,check.names=FALSE)
names(d)
names(nice_names(d))