CRAN

dqrng 0.2.1

Fast Pseudo Random Number Generators

Released May 17, 2019 by Ralf Stubner

This package can be loaded by Renjin but there was an error compiling C/FORTRAN sources and all tests failed. An older version of this package is more compatible with Renjin.

Dependencies

sitmo 2.0.1 BH 1.69.0-1 Rcpp

Several fast random number generators are provided as C++ header only libraries: The PCG family by O'Neill (2014 ) as well as Xoroshiro128+ and Xoshiro256+ by Blackman and Vigna (2018 ). In addition fast functions for generating random numbers according to a uniform, normal and exponential distribution are included. The latter two use the Ziggurat algorithm originally proposed by Marsaglia and Tsang (2000, ). These functions are exported to R and as a C++ interface and are enabled for use with the default 64 bit generator from the PCG family, Xoroshiro128+ and Xoshiro256+ as well as the 64 bit version of the 20 rounds Threefry engine (Salmon et al., 2011 ) as provided by the package 'sitmo'.

Installation

Maven

This package can be included as a dependency from a Java or Scala project by including the following your project's pom.xml file. Read more about embedding Renjin in JVM-based projects.

<dependencies>
  <dependency>
    <groupId>org.renjin.cran</groupId>
    <artifactId>dqrng</artifactId>
    <version>0.2.1-b1</version>
  </dependency>
</dependencies>
<repositories>
  <repository>
    <id>bedatadriven</id>
    <name>bedatadriven public repo</name>
    <url>https://nexus.bedatadriven.com/content/groups/public/</url>
  </repository>
</repositories>

View build log

Renjin CLI

If you're using Renjin from the command line, you load this library by invoking:

library('org.renjin.cran:dqrng')

Test Results

This package was last tested against Renjin 0.9.2726 on Jul 13, 2019.

Source

R
C
C++

View GitHub Mirror

Release History