plotcdf {pAnalysis} | R Documentation |
Plots the cumulative probability density function for a given number of degrees of freedom (dof) and a noise distribution function
plotcdf(dof, order = 4, dist = "normal", ...)
dof |
the degrees of freedom of interest |
order |
the order of magnitude of the number of samples desired for the plot |
dist |
the noise distribution: 'normal', 'uniform', 'lognormal', 'poisson', 'binomial' |
... |
other arguments used in pcdfs(). |
The output of plotcdf() is a ggplot object
Joseph G. Kreke, PhD
plt <- plotcdf(dof=10, dist="lognormal")
plt <- plotcdf(4,order=5,dist='binomial',par1=10,par2=0.75)