Learn R Programming

bsearchtools (version 0.0.59)

DFI.coercion: Coerce a DFI object

Description

Coerce a DFI object to data.frame or matrix

Usage

"as.data.frame"(x, ...) "as.matrix"(x, ...)

Arguments

x
a DFI object
...
optional arguments passed to inner as.data.frame and as.matrix methods.

Value

A data.frame or matrix object

See Also

DFI

Examples

Run this code
### create a simple DFIobj
DF <- data.frame(Foo=c(3,5,7,1,5,8,7,10),
                 Bar=c("A","B","B","C","B","B","C","A"),
                 Baz=c(TRUE,FALSE),
                 stringsAsFactors=FALSE)
DFIobj <- DFI(DF, c("Foo","Bar")) # create a DFI from DF with indexes on "Foo" and "Bar" columns

### coercion
as.data.frame(DFIobj)
as.matrix(DFIobj)

Run the code above in your browser using DataLab