Uwe Ligges-3 wrote:
>
>
>
> megh wrote:
>> Let say, I have an arbitrary vector :
>>
>> i=1
>> assign(paste("dat",i,sep=""), rnorm(5))
>>
>> Now I want to update that "dat1" vector by ommiting last 2 elements i.e.
>>
>> dat1 = dat1[c(1:3)]
>>
>> However here my problem is, as "dat1" depend
megh wrote:
Let say, I have an arbitrary vector :
i=1
assign(paste("dat",i,sep=""), rnorm(5))
Now I want to update that "dat1" vector by ommiting last 2 elements i.e.
dat1 = dat1[c(1:3)]
However here my problem is, as "dat1" depends on another variable "i", I
cannot use above syntax directl
Let say, I have an arbitrary vector :
i=1
assign(paste("dat",i,sep=""), rnorm(5))
Now I want to update that "dat1" vector by ommiting last 2 elements i.e.
dat1 = dat1[c(1:3)]
However here my problem is, as "dat1" depends on another variable "i", I
cannot use above syntax directly. I want to au
3 matches
Mail list logo