The R Project SVN R-packages

Rev

Rev 202 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 202 Rev 1684
Line 4... Line 4...
4
fubar <- function() {
4
fubar <- function() {
5
    k <- 2
5
    k <- 2
6
    kkk <- 1:10
6
    kkk <- 1:10
7
    names(kkk) <- 1:10
7
    names(kkk) <- 1:10
8
    data = list(x=kkk)
8
    data = list(x=kkk)
9
    dotplot(x^k + rnorm(10), data, allow = T)
9
    dotplot(~x^k + rnorm(10), data)
10
}
10
}
11
 
11
 
12
fubar()
12
fubar()
13
dev.off()
13
dev.off()