[[Rcpp::export]]
| 159 | |
| 160 | // [[Rcpp::export]] |
| 161 | DataFrame DataFrame_PushWrongSize(){ |
| 162 | NumericVector u(2); |
| 163 | NumericVector v(3); |
| 164 | |
| 165 | DataFrame df1 = DataFrame::create(_["u"] = u); |
| 166 | df1.push_back(v); |
| 167 | return df1; |
| 168 | } |
| 169 | |
| 170 | // [[Rcpp::export]] |
| 171 | DataFrame DataFrame_PushReplicateLength(){ |