Learn R Programming


title: "NFW Distribution Sampling" output: github_document

knitr::opts_chunk$set(echo = TRUE)

GitHub Documents

This package lets you sample from the NFW as a true PDF with the only variable being the concerntration (con in the package).

Load

Load with:

library(NFWdist)

Checks

Here we see that our random draws (using the rnfw via the qnfw function) produces the right PDFs (as per dnfw):

for(con in c(1,5,10,20)){
  plot(density(rnfw(1e6,con=con), bw=0.01))
  lines(seq(0,1,len=1e3), dnfw(seq(0,1,len=1e3),con=con),col='red')
  legend('topright',legend=paste('con =',con))
}

Copy Link

Version

Install

install.packages('NFWdist')

Monthly Downloads

135

Version

0.1.0

License

GPL-3

Maintainer

Aaron Robotham

Last Published

May 29th, 2018

Functions in NFWdist (0.1.0)

nfw

The Standard Distribution Functions for the 3D NFW Profile