Hello Patrick,

this does not work and gives following warning message:

for(i in 1:85) range(get(paste("V", i, sep="")), na.rm=TRUE)
Warning messages:
1: kein nicht-fehlendes Argument für min; gebe Inf zurück
2: kein nicht-fehlendes Argument für max; gebe -Inf zurück

This works but also with the warning message:

Vranges <- array(NA, c(85, 2))
for(i in 1:85) Vranges[i,] <- range(get(paste("V", i, sep="")),  
na.rm=TRUE)


Greetings

Birgit


Am 28.06.2007 um 12:27 schrieb Patrick Burns:

> In your code the 'range' call is only seen when i is 85.
> I think the following is what you want:
>
> for(i in 1:85) range(get(paste("V", i, sep="")), na.rm=TRUE)
>
> Except that nothing is done with the results of 'range'.  More
> likely is:
>
> Vranges <- array(NA, c(85, 2))
> for(i in 1:85) Vranges[i,] <- range(get(paste("V", i, sep="")),  
> na.rm=TRUE)
>
> See S Poetry for details.
>
> Patrick Burns
> [EMAIL PROTECTED]
> +44 (0)20 8525 0696
> http://www.burns-stat.com
> (home of S Poetry and "A Guide for the Unwilling S User")
>
> Birgit Lemcke wrote:
>
>> Hello,
>> (Power Book G4, Mac OS X, R 2.5.0)
>>
>> I would like to repeat the function range for 85 Vectors (V1-V85).
>> I tried with this code:
>>
>> i<-0
>> > repeat {
>> + i<-i+1
>> + if (i<85) next
>> + range (Vi, na.rm = TRUE)
>> + if (i==85) break
>> + }
>>
>> I presume that the Vi is wrong, because in this syntax i is not  
>> known  as a variable. But I don´t know how to say that it is a  
>> variable here.
>> Would be nice if somebody could help me.
>> Perhaps I´m thinking too complicated and there is an easier way to  
>> do  this.
>>
>> Thanks in advance
>>
>> Greetings
>>
>> Birgit
>>
>> Birgit Lemcke
>> Institut für Systematische Botanik
>> Zollikerstrasse 107
>> CH-8008 Zürich
>> Switzerland
>> Ph: +41 (0)44 634 8351
>> [EMAIL PROTECTED]
>>
>>
>>
>>
>>
>>
>>      [[alternative HTML version deleted]]
>>
>>
>> --------------------------------------------------------------------- 
>> ---
>>
>> ______________________________________________
>> [email protected] mailing list
>> https://stat.ethz.ch/mailman/listinfo/r-help
>> PLEASE do read the posting guide http://www.R-project.org/posting- 
>> guide.html
>> and provide commented, minimal, self-contained, reproducible code.
>>

Birgit Lemcke
Institut für Systematische Botanik
Zollikerstrasse 107
CH-8008 Zürich
Switzerland
Ph: +41 (0)44 634 8351
[EMAIL PROTECTED]






        [[alternative HTML version deleted]]

______________________________________________
[email protected] mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.

Reply via email to