This is admittedly minor, and you shouldn't have repeated names in a data frame anyway, but:
df <- data.frame(1:3, 1:3, 1:3)
# Ok
setNames(df, c("x", "y", ""))
# Not ok
setNames(df, c("x", "", ""))
Hadley
--
http://hadley.nz
______________________________________________
[email protected] mailing list
https://stat.ethz.ch/mailman/listinfo/r-devel
