Skip to content

Commit 940e8ad

Browse files
committed
small update to counts
1 parent 3a02449 commit 940e8ad

File tree

1 file changed

+18
-18
lines changed

1 file changed

+18
-18
lines changed

README.md

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -10,22 +10,22 @@ types are supported (vectors, functions, environment, etc ...) and each
1010
type is mapped to a dedicated class. For example, numeric vectors are
1111
represented as instances of the Rcpp::NumericVector class, environments are
1212
represented as instances of Rcpp::Environment, functions are represented as
13-
Rcpp::Function, etc ...
13+
Rcpp::Function, etc ...
1414
The
1515
[Rcpp-introduction](https://cran.r-project.org/package=Rcpp/vignettes/Rcpp-introduction.pdf)
1616
vignette (also published as a [JSS paper](http://www.jstatsoft.org/v40/i08/)) provides a good
1717
entry point to Rcpp as do the [Rcpp website](http://www.rcpp.org), the
18-
[Rcpp page](http://dirk.eddelbuettel.com/code/rcpp.html) and the
18+
[Rcpp page](http://dirk.eddelbuettel.com/code/rcpp.html) and the
1919
[Rcpp Gallery](http://gallery.rcpp.org). Full documentation
2020
is provided by the [Rcpp book](http://www.rcpp.org/book/).
2121

22-
Conversion from C++ to R and back is driven by the templates `Rcpp::wrap`
22+
Conversion from C++ to R and back is driven by the templates `Rcpp::wrap`
2323
and `Rcpp::as` which are highly flexible and extensible, as documented
2424
in the [Rcpp-extending](https://cran.r-project.org/package=Rcpp/vignettes/Rcpp-extending.pdf) vignette.
2525

26-
Rcpp also provides Rcpp modules, a framework that allows exposing
26+
Rcpp also provides Rcpp modules, a framework that allows exposing
2727
C++ functions and classes to the R level. The [Rcpp-modules](https://cran.r-project.org/package=Rcpp/vignettes/Rcpp-modules.pdf) vignette
28-
details the current set of features of Rcpp-modules.
28+
details the current set of features of Rcpp-modules.
2929

3030
Rcpp includes a concept called Rcpp sugar that brings many R functions
3131
into C++. Sugar takes advantage of lazy evaluation and expression templates
@@ -39,42 +39,42 @@ required to invoke them. Attributes are intended to facilitate both
3939
interactive use of C++ within R sessions as well as to support R
4040
package development. Attributes are built on top of Rcpp modules and
4141
their implementation is based on previous work in the inline package.
42-
See the [Rcpp-atttributes](https://cran.r-project.org/package=Rcpp/vignettes/Rcpp-attributes.pdf) vignettes for more details.
42+
See the [Rcpp-atttributes](https://cran.r-project.org/package=Rcpp/vignettes/Rcpp-attributes.pdf) vignettes for more details.
4343

44-
### Documentation
44+
### Documentation
4545

46-
The package ships with nine pdf vignettes.
46+
The package ships with nine pdf vignettes.
4747

48-
Additional documentation is available via the
48+
Additional documentation is available via the
4949
[JSS paper](http://www.jstatsoft.org/v40/i08/) by Eddelbuettel and
50-
Francois (2011, JSS) paper (corresponding to the 'intro' vignette)
51-
and the [book](http://www.rcpp.org/book) by Eddelbuettel (2013, Springer);
50+
Francois (2011, JSS) paper (corresponding to the 'intro' vignette)
51+
and the [book](http://www.rcpp.org/book) by Eddelbuettel (2013, Springer);
5252
see 'citation("Rcpp")' for details.
5353

5454
### Examples
5555

5656
The [Rcpp Gallery](http://gallery.rcpp.org) showcases over one hundred fully
5757
documented and working examples.
5858

59-
A number of examples are included as are 1394 unit tests in 606 unit
59+
A number of examples are included as are 1429 unit tests in 618 unit
6060
test functions provide additional usage examples.
6161

6262
An earlier version of Rcpp, containing what we now call the 'classic Rcpp
6363
API' was written during 2005 and 2006 by Dominick Samperi. This code has
6464
been factored out of Rcpp into the package RcppClassic, and it is still
65-
available for code relying on the older interface. New development should
65+
available for code relying on the older interface. New development should
6666
always use this Rcpp package instead.
6767

68-
Other usage examples are provided by packages using Rcpp. As of March 2018,
69-
there are 1309 [CRAN](https://cran.r-project.org) packages using Rcpp, a further
68+
Other usage examples are provided by packages using Rcpp. As of July 2018,
69+
there are 1402 [CRAN](https://cran.r-project.org) packages using Rcpp, a further
7070
91 [BioConductor](http://www.bioconductor.org) packages in its current release
7171
as well as an unknown number of GitHub, Bitbucket, R-Forge, ... repositories
7272
using Rcpp. All these packages provide usage examples for Rcpp.
7373

7474
### Installation
7575

7676
Released and tested versions of Rcpp are available via the
77-
[CRAN](https://cran.r-project.org) network, and can be installed from within R via
77+
[CRAN](https://cran.r-project.org) network, and can be installed from within R via
7878

7979
```R
8080
install.packages("Rcpp")
@@ -95,7 +95,7 @@ if your question has been asked before.
9595

9696
Another option is to use
9797
[StackOverflow and its 'rcpp' tag](http://stackoverflow.com/questions/tagged/rcpp).
98-
Search functionality (use `rcpp` in squared brackets as in
98+
Search functionality (use `rcpp` in squared brackets as in
9999
[[rcpp] my question terms](https://stackoverflow.com/search?q=[rcpp]%20my%20question%20terms)
100100
to tag the query) is very valuable as many questions have indeed been asked, and
101101
answered, before.
@@ -108,7 +108,7 @@ previous issues can be searched as well.
108108
### Authors
109109

110110
Dirk Eddelbuettel, Romain Francois, JJ Allaire, Kevin Ushey, Qiang Kou,
111-
Nathan Russell, Doug Bates, and John Chambers
111+
Nathan Russell, Doug Bates, and John Chambers
112112

113113
### License
114114

0 commit comments

Comments
 (0)