[Rcpp-commits] r3590 - pkg/RcppArmadillo/inst/examples

noreply at r-forge.r-project.org noreply at r-forge.r-project.org
Sun Apr 29 17:19:10 CEST 2012


Author: edd
Date: 2012-04-29 17:19:10 +0200 (Sun, 29 Apr 2012)
New Revision: 3590

Modified:
   pkg/RcppArmadillo/inst/examples/fastLm.r
Log:
switch columns in display


Modified: pkg/RcppArmadillo/inst/examples/fastLm.r
===================================================================
--- pkg/RcppArmadillo/inst/examples/fastLm.r	2012-04-29 14:50:37 UTC (rev 3589)
+++ pkg/RcppArmadillo/inst/examples/fastLm.r	2012-04-29 15:19:10 UTC (rev 3590)
@@ -63,7 +63,9 @@
                  fastLm(frm, data=trees),       # using model matrix
                  lm.fit(X, y),                  # R's fast function, no stderr
                  lm(frm, data=trees),           # R's standard function
-                 columns = c("test", "replications", "elapsed", "relative"),
+                 columns = c("test", "replications", "relative",
+                             "elapsed", "user.self", "sys.self"),
+
                  order="relative",
                  replications=2500)
 



More information about the Rcpp-commits mailing list