I got the following from R 1.8.0 under Windows 2000:
> A_1
Error: syntax error
> A_B <- 1
Error: syntax error
> "A_B" <- 1
> DF <- data.frame(A_B=1)
Error: syntax error
> DF <- data.frame("A_B"=1)
> DF
A.B
1 1
> names(DF) <- "A_B"
> DF
A_B
1 1
> lm("A_B"~1, DF)
Error in terms.formula(formula, data = data) :
invalid term in model formula Thanks for your help,
Spencer Graves______________________________________________ [EMAIL PROTECTED] mailing list https://www.stat.math.ethz.ch/mailman/listinfo/r-help
