The R Project SVN R

Rev

Rev 27153 | Rev 30412 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 27153 Rev 27716
Line 35... Line 35...
35
x <- c(1:4,0:5,11)
35
x <- c(1:4,0:5,11)
36
which.min(x)
36
which.min(x)
37
which.max(x)
37
which.max(x)
38
 
38
 
39
## it *does* work with NA's present:
39
## it *does* work with NA's present:
40
data(presidents)
40
data(presidents, package="stats")
41
presidents[1:30]
41
presidents[1:30]
42
range(presidents, na.rm = TRUE)
42
range(presidents, na.rm = TRUE)
43
which.min(presidents)# 28
43
which.min(presidents)# 28
44
which.max(presidents)# 2
44
which.max(presidents)# 2
45
}
45
}