R version 2.10.0 (2009-10-26) Copyright (C) 2009 The R Foundation for Statistical Computing ISBN 3-900051-07-0 R is free software and comes with ABSOLUTELY NO WARRANTY. You are welcome to redistribute it under certain conditions. Type 'license()' or 'licence()' for distribution details. R is a collaborative project with many contributors. Type 'contributors()' for more information and 'citation()' on how to cite R or R packages in publications. Type 'demo()' for some demos, 'help()' for on-line help, or 'help.start()' for an HTML browser interface to help. Type 'q()' to quit R. > x <- array(list(36,3,36,1,56,3,48,3,32,3,44,1,39,2,34,3,41,3,50,2,39,1,62,1,52,3,37,3,50,3,41,1,55,3,41,3,56,3,39,2,52,2,46,1,44,1,48,3,41,3,50,1,50,1,44,3,52,1,54,2,44,3,52,2,37,2,52,3,50,1,36,3,50,3,52,1,55,2,31,1,36,1,49,2,42,1,37,1,41,3,30,2,52,2,30,1,41,1,44,1,66,1,48,2,43,3,57,3,46,3,54,3,48,2,48,2,52,2,62,3,58,3,58,2,62,2,48,2,46,3,34,2,66,3,52,3,55,2,55,2,57,3,56,3,55,2,56,1,54,2,55,2,46,2,52,2,32,3,44,2,46,3,59,1,46,3,46,3,54,1,66,1,56,2,59,1,57,3,52,1,48,3,44,2,41,3,50,1,48,1,48,2,59,3,34,1,46,3,54,1,55,2,54,2,59,3,44,3,54,1,52,3,66,3,44,3,57,2,39,3,60,3,45,3,41,3,50,1,39,3,43,1,48,3,37,3,58,3,46,2,43,3,44,2,34,3,30,2,50,2,39,2,37,3,55,3,48,1,41,1,39,3,36,3,43,2,50,1,55,3,43,3,60,3,48,2,30,1,43,3,39,3,52,3,39,2,39,3,56,2,59,3,46,3,57,2,50,3,54,3,50,3,60,3,59,1,41,3,48,2,59,3,60,3,56,1,56,1,51,3),dim=c(2,160),dimnames=list(c('RespVar','AgeGroup'),1:160)) > y <- array(NA,dim=c(2,160),dimnames=list(c('RespVar','AgeGroup'),1:160)) > for (i in 1:dim(x)[1]) + { + for (j in 1:dim(x)[2]) + { + y[i,j] <- as.numeric(x[i,j]) + } + } > par3 = 'TRUE' > par2 = '2' > par1 = '1' > ylab = 'IQ Score' > xlab = 'Mother's Age' Error: unexpected symbol in "xlab = 'Mother's" Execution halted