You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Additional documentation is available via the [Rcpp book](https://www.amazon.com/gp/product/1461468671/ref=as_li_tl?ie=UTF8&camp=1789&creative=9325&creativeASIN=1461468671&linkCode=as2&tag=rcpp-20&linkId=3P5LNUWOAQ2YMEJ6)
81
+
Additional documentation is available via the [Rcpp book](https://link.springer.com/book/10.1007/978-1-4614-6868-4)
82
82
by Eddelbuettel (2013, Springer); see 'citation("Rcpp")' for details.
Copy file name to clipboardExpand all lines: vignettes/rmd/Rcpp-introduction.Rmd
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -625,7 +625,7 @@ in place of `sample(n, n, replace = TRUE)` to sample row ids. This is an
625
625
equivalent substitution since equal weight is being placed upon all row ids and
626
626
replacement is allowed.\footnote{For more flexibility in sampling see Christian Gunning's
627
627
Sample extension for \pkg{RcppArmadillo} and
628
-
\href{http://gallery.rcpp.org/articles/using-the-Rcpp-based-sample-implementation/}{Rcpp Gallery: Using the \pkg{RcppArmadillo}-based Implementation of R's sample()} or consider using the \code{Rcpp::sample()} sugar function added in 0.12.9 by Nathan Russell.}
628
+
\href{https://gallery.rcpp.org/articles/using-the-Rcpp-based-sample-implementation/}{Rcpp Gallery: Using the \pkg{RcppArmadillo}-based Implementation of R's sample()} or consider using the \code{Rcpp::sample()} sugar function added in 0.12.9 by Nathan Russell.}
629
629
Note that the upper bound of the interval, `n`, will never be reached. While
630
630
this may seem flawed, it is important to note that vectors and matrices in
631
631
\cpp use a zero-based indexing system, meaning that they begin at 0 instead of 1
@@ -718,7 +718,7 @@ classes \citep{Sanderson+Curtin:2016} via the \pkg{RcppArmadillo} package
718
718
running this example, the \pkg{RcppArmadillo} package must be installed using
719
719
`install.packages('RcppArmadillo')`.\footnote{macOS users may encounter `-lgfortran`
720
720
and `-lquadmath` errors on compilations with this package if the development environment
721
-
is not appropriately set up. \href{https://cran.r-project.org/web/packages/Rcpp/vignettes/Rcpp-FAQ.pdf}{Section 2.16 of the Rcpp FAQ} provides details regarding the necessary `gfortran` binaries.}
721
+
is not appropriately set up. \href{https://cran.r-project.org/package=Rcpp/vignettes/Rcpp-FAQ.pdf}{Section 2.16 of the Rcpp FAQ} provides details regarding the necessary `gfortran` binaries.}
722
722
One important caveat when using additional packages
723
723
within the \rcpp ecosystem is the correct header file may not be `Rcpp.h`.
724
724
In a majority of cases, the additional package ships a dedicated header
0 commit comments