dwww Home | Show directory contents | Find package

stopifnot(requireNamespace("Matrix" , quietly = TRUE)) # includes 'methods'

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

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

Generated by dwww version 1.15 on Tue Jul 2 05:37:35 CEST 2024.