#include <Rcpp.h>
Public Member Functions | |
RcppFrame (SEXP df) | |
RcppFrame (std::vector< std::string > colNames) | |
std::vector< std::string > & | getColNames () |
std::vector< std::vector < ColDatum > > & | getTableData () |
void | addRow (std::vector< ColDatum > rowData) |
int | rows () |
int | cols () |
Private Attributes | |
std::vector< std::string > | colNames |
std::vector< std::vector < ColDatum > > | table |
Definition at line 287 of file Rcpp.h.
RcppFrame::RcppFrame | ( | SEXP | df | ) |
RcppFrame::RcppFrame | ( | std::vector< std::string > | colNames | ) | [inline] |
void RcppFrame::addRow | ( | std::vector< ColDatum > | rowData | ) | [inline] |
Definition at line 298 of file Rcpp.h.
References colNames, and table.
Referenced by Rcpp_Example().
std::vector<std::string>& RcppFrame::getColNames | ( | ) | [inline] |
std::vector<std::vector<ColDatum> >& RcppFrame::getTableData | ( | ) | [inline] |
std::vector<std::string> RcppFrame::colNames [private] |
Definition at line 288 of file Rcpp.h.
Referenced by addRow(), getColNames(), and RcppFrame().
std::vector<std::vector<ColDatum> > RcppFrame::table [private] |
Definition at line 289 of file Rcpp.h.
Referenced by addRow(), cols(), getTableData(), RcppFrame(), and rows().