cls59 wrote:
>
>
> data.file <- paste( set.name, sep='' )
>
> assign( set.name, read.dta( file.name ), envir = .GlobalEnv )
>
>
Opps, those lines should have been:
data.file <- paste( set.name, '.dta', sep='' )
assign( set.name, read.dta( data.file ), envir = .GlobalEnv )
Sor
Rakknar wrote:
>
> Hello. I'm trying to run a series of commands in two different datasets.
> For make it efficient I want to make a loop for it. Until now the only
> command for loops i found it's the for() command it's only for series of
> numbers and not a series of strings, witch it's what
On 22/09/2009 4:50 PM, Rakknar wrote:
Hello. I'm trying to run a series of commands in two different datasets. For
make it efficient I want to make a loop for it. Until now the only command
for loops i found it's the for() command it's only for series of numbers and
not a series of strings,
W
3 matches
Mail list logo