You can install dummy from from GitHub with:
# install.packages("devtools")
devtools::install_github("petestylianos/dummy")
This is a basic example which shows you how to solve a common problem with dummy:
It produces 10 random numbers from the standard normal distribution. Very serious stuff.
library(dummy)
library(tibble)
library(magrittr)
dummy::random_numbers %>%
as_tibble()
#> # A tibble: 10 x 1
#> value
#> <dbl>
#> 1 -0.521
#> 2 0.121
#> 3 1.26
#> 4 0.629
#> 5 -0.875
#> 6 0.734
#> 7 -0.498
#> 8 0.00855
#> 9 0.619
#> 10 0.633
More examples to come soon.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.