Displaying 2 results from an estimated 2 matches for "varz9".
Did you mean:
var9
2003 Oct 16
4
summary with names
...tion but I
didn't find an answer in the Docus, the FAQ and maillist archive.
I want a summary for about 250 variables and realise it
the following way (I know, that I shouldn't use iterations
that way in R; but at the moment it's the easiest way for me):
for(i in fb.12.unt[varA1:varZ9]){print (summary(i, na.rm=t))}
It works fine, but I don't know which summary corresponds to
which variable, because the variable names are not printed.
Can somebody give me a hint?
TIA
Regards,
Christoph
--
Christoph Bier, Dipl.Oecotroph., Email: bier at wiz.uni-kassel.de
Universitaet Ka...
2003 Oct 16
0
AW: summary with names
...ata.frame (fb.12.unt)
with 302 variables (columns) and 98 values for each (rows).
Sorry, if I use the wrong terms!! The data.frame was imported
from SPSS-Data. Some of these variables belong together
(altogether ~250) and for those I want summaries in extra files.
> What is: fb.12.unt[varA1:varZ9]
> You treat it like a vector, but it is already indexed by a vector, which
> is a sequence from the
> value of varA1 to the value of varZ9.
Ok, here I has to capitulate ;-/.
A vector is a datastructure, that concatenates several
objects of the same kind to one object, e.g. a variab...