stm2dns: Simple Triplet-Matrix to Dense matrix

View source: R/stm2other.R

stm2dnsR Documentation

Simple Triplet-Matrix to Dense matrix

Description

Simple Triplet-Matrix to Dense matrix

Usage

stm2dns(x, memory = NULL)

## S3 method for class 'simple_triplet_matrix'
as.data.frame(x, ..., memory = NULL)

Arguments

x

an object of simple_triplet_matrix class

memory

(num) the maximum ammount of memory (RAM + virtual) the sistem is required to reserve for the proces. Default is to use standard R option and so provide "memory.limit()"

...

further arguments passed to the function

Value

stm2dns returns a full dense matrix

as.data.frame.simple_triplet_matrix returns a data.frame

Examples

data("liu_dtm")
liu_full_matrix <- stm2dns(liu_dtm)
liu_df <- as.data.frame(liu_dtm)

UBESP-DCTV/costumer documentation built on Feb. 1, 2023, 4:52 a.m.