Displaying 1 result from an estimated 1 matches for "adnuts06".
2005 Jun 13
3
assignment of inidividual variables from spss save files
...> ### and I would like to assign individual variables.
> ### I can of course type out all the ones I want, eg
> ADULTS11<-children[18]
> ### But I'm lazy, so tried:
> (function (x,n){assign(names(x[n]),x[n])})(children,2)
> ### where
> names(children[2])
[1] "ADNUTS06"
> ### but
> ADNUTS06
Error: Object "ADNUTS06" not found
> ### I've tried lots of variations, including creating and
> ### evaluating statements such as "ADNUTS06<-children[2]",
> ### but without apparently yielding the required variable.
I expec...