Skip to content

Commit a5bd119

Browse files
committed
rearranging a few 'featured' tags
1 parent c936d5e commit a5bd119

6 files changed

+10
-10
lines changed

_posts/2017-02-19-rcpp-and-c++11-c++14-c++17.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: "Using Rcpp with C++11, C++14 and C++17"
33
author: "Dirk Eddelbuettel"
44
license: GPL (>= 2)
5-
tags: c++11 c++14 c++17 featured
5+
tags: c++11 c++14 c++17
66
summary: "Rcpp supports any C++ variant: from C++98 to C++11, C++14 and now C++17"
77
layout: post
88
src: 2017-02-19-rcpp-and-c++11-c++14-c++17.Rmd

_posts/2020-05-05-creating-a-datatable-in-rcpp.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Creating a data.table from C++
33
author: David Zimmermann, Leonardo Silvestri, Dirk Eddelbuettel
44
license: GPL (>= 2)
5-
tags: data.table
5+
tags: data.table featured
66
summary: This post shows how to create a data.table (mostly) directly in Rcpp
77
layout: post
88
src: 2020-05-05-creating-a-datatable-in-rcpp.Rmd
@@ -226,8 +226,8 @@ rbenchmark::benchmark(
226226

227227
<pre class="output">
228228
test replications elapsed relative user.self sys.self
229-
2 create_dt_correct(15, 1000) 10 0.004 1.00 0.004 0.000
230-
1 create_dt_naive(15, 1000) 10 0.011 2.75 0.009 0.001
229+
2 create_dt_correct(15, 1000) 10 0.007 1.000 0.008 0
230+
1 create_dt_naive(15, 1000) 10 0.013 1.857 0.013 0
231231
user.child sys.child
232232
2 0 0
233233
1 0 0
@@ -248,8 +248,8 @@ rbenchmark::benchmark(
248248

249249
<pre class="output">
250250
test replications elapsed relative user.self sys.self
251-
2 create_dt_correct(15, 1e+06) 10 3.92 1.00 3.820 0.100
252-
1 create_dt_naive(15, 1e+06) 10 4.00 1.02 3.923 0.077
251+
2 create_dt_correct(15, 1e+06) 10 4.202 1.000 4.035 0.167
252+
1 create_dt_naive(15, 1e+06) 10 4.265 1.015 4.147 0.118
253253
user.child sys.child
254254
2 0 0
255255
1 0 0

_posts/2020-07-31-handling-R6-objects-in-rcpp.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: "Handling R6 objects in C++"
33
author: "David Quesada"
44
license: GPL (>= 2)
5-
tags: basics r6
5+
tags: basics r6 featured
66
summary: Some examples of how to create R6 objects in C++ and how to call their methods
77
layout: post
88
src: 2020-07-31-handling-R6-objects-in-rcpp.Rmd

src/2017-02-19-rcpp-and-c++11-c++14-c++17.Rmd

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: "Using Rcpp with C++11, C++14 and C++17"
33
author: "Dirk Eddelbuettel"
44
license: GPL (>= 2)
5-
tags: c++11 c++14 c++17 featured
5+
tags: c++11 c++14 c++17
66
summary: "Rcpp supports any C++ variant: from C++98 to C++11, C++14 and now C++17"
77
---
88

src/2020-05-05-creating-a-datatable-in-rcpp.Rmd

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Creating a data.table from C++
33
author: David Zimmermann, Leonardo Silvestri, Dirk Eddelbuettel
44
license: GPL (>= 2)
5-
tags: data.table
5+
tags: data.table featured
66
summary: This post shows how to create a data.table (mostly) directly in Rcpp
77
---
88

src/2020-07-31-handling-R6-objects-in-rcpp.Rmd

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: "Handling R6 objects in C++"
33
author: "David Quesada"
44
license: GPL (>= 2)
5-
tags: basics r6
5+
tags: basics r6 featured
66
summary: Some examples of how to create R6 objects in C++ and how to call their methods
77
---
88

0 commit comments

Comments
 (0)