├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── NAMESPACE ├── R └── convert.R ├── README.md └── inst └── figures └── hex.png /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonocarroll/purrr2for/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonocarroll/purrr2for/HEAD/.gitignore -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonocarroll/purrr2for/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonocarroll/purrr2for/HEAD/NAMESPACE -------------------------------------------------------------------------------- /R/convert.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonocarroll/purrr2for/HEAD/R/convert.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonocarroll/purrr2for/HEAD/README.md -------------------------------------------------------------------------------- /inst/figures/hex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonocarroll/purrr2for/HEAD/inst/figures/hex.png --------------------------------------------------------------------------------