sqlite.vector {SQLiteDF} | R Documentation |
Creates a SQLite Matrix (SVEC) from atomic vectors.
sqlite.vector(vec, name = NULL)
vec |
an atomic vector |
name |
name of the SQLite Data Frame created which will hold the vector |
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.
A S3 object representing the SQLite Vector.
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
.
Miguel A. R. Manese
sqlite.matrix
sqlite.data.frame
data <- runif(30000) summary(data)