sqlite.vector {SQLiteDF}R Documentation

SQLite Vector

Description

Creates a SQLite Matrix (SVEC) from atomic vectors.

Usage

sqlite.vector(vec, name = NULL)

Arguments

vec an atomic vector
name name of the SQLite Data Frame created which will hold the vector

Details

Creates an SDF with 1 column named V1 which will hold the data of the vector. The mode of the SQLite vector is determined from data.

Value

A S3 object representing the SQLite Vector.

Note

SQLite vectors are not limited to columns of the table sdf_data. For example, with SQLite matrices the row names are exposed as SQLite vectors on columns of a table other than sdf_data.

Author(s)

Miguel A. R. Manese

See Also

sqlite.matrix sqlite.data.frame

Examples

    data <- runif(30000)
    summary(data)

[Package SQLiteDF version 0.1.32 Index]