MCPcopy Create free account
hub / github.com/RcppCore/Rcpp / DataFrame_PushFrontNamed

Function DataFrame_PushFrontNamed

inst/tinytest/cpp/DataFrame.cpp:117–123  ·  view source on GitHub ↗

[[Rcpp::export]]

Source from the content-addressed store, hash-verified

115
116// [[Rcpp::export]]
117DataFrame DataFrame_PushFrontNamed(){
118 NumericVector u(2);
119 NumericVector v(2);
120 DataFrame df = DataFrame::create(_["u"] = u);
121 df.push_front(v, "v");
122 return df;
123}
124
125// [[Rcpp::export]]
126DataFrame DataFrame_PushFrontUnnamed(){

Callers

nothing calls this directly

Calls 1

push_frontMethod · 0.45

Tested by

no test coverage detected