The R Project SVN R-packages

Rev

Blame | Last modification | View Log | Download | RSS feed

stopifnot(require(Matrix)) # at least its classes

USCounties <-
    local({
    load(system.file(file.path("external", "USCounties_slots.rda"),
                         package = "Matrix"))
    ## -> 'L'
    r <- new("dsCMatrix")
    for (n in c("Dim", "i","p","x"))
        slot(r, n) <- L[[n]]
    r
    })

## The reverse:
##  L <- list()
##  for (n in c("Dim", "i","p","x"))    L[[n]] <- slot(USCounties, n)