Package logitnorm. R topics documented: February 20, 2015

Size: px
Start display at page:

Download "Package logitnorm. R topics documented: February 20, 2015"

Transcription

1 Title Functions for the al distribution. Version Date Author Package February 20, 2015 Maintainer Density, distribution, quantile and random generation function for the al distribution. Estimation of the mode and the first two moments. Estimation of distribution parameters. Depends Suggests RUnit License GPL-2 LazyLoad yes Repository CRAN Repository/R-Forge/Project Repository/R-Forge/Revision 31 Date/Publication :45:36 NeedsCompilation no R topics documented: -package d invlogit logit modelogitnorm momentslogitnorm p q r twcoeflogitnorm

2 2 d twcoeflogitnormci twcoeflogitnorme twcoeflogitnormmle twcoeflogitnormn twsigmalogitnorm Index 15 -package Functions for the al distribution. Details Density, distribution, quantile and random generation function for the al distribution. Estimation of the mode and the first two moments. Estimation of distribution parameters. Package: Title: Functions for the al distribution. Version: Date: Author: Maintainer: <twutz@bgc-jena.mpg.de> Depends: Suggests: RUnit License: GPL-2 LazyLoad: yes d d Density function of al distribution d(q, mu = 0, sigma = 1,...)

3 invlogit 3 q mu Details sigma quantiles distribution parameters... further arguments passed to dnorm: mean, and sd for mu and sigma respectively. Logitnorm distribution density function: d distribution function: p quantile function: q random generation function: r Transformation functions (0,1) -> (-Inf,Inf): logit (-Inf,Inf) -> (0,1): invlogit Moments and mode Expected value and variance: momentslogitnorm Mode: modelogitnorm Estimating parameters from mode and upper quantile: twcoeflogitnormmle from median and upper quantile: twcoeflogitnorm from expected value, i.e. mean and upper quantile: twcoeflogitnorme from a confidence interval which is symmetric at normal scale: twcoeflogitnormci from prescribed quantiles: twcoeflogitnormn invlogit invlogit Transforming (-Inf,Inf) to original scale (0,1) invlogit(q,...) q...

4 4 logit Details function f(z) = ez e z +1 = 1 1+e z logit logit logit Transforming (0,1) to normal scale (-Inf Inf) logit(p,...) p... Details function logit(p) = log ( ) p 1 p = log(p) log(1 p) invlogit

5 modelogitnorm 5 modelogitnorm modelogitnorm Mode of the al distribution by numerical optimization modelogitnorm(mu, sigma, tol = invlogit(mu)/1000) mu sigma tol parameter mu parameter sigma precisions of the estimate momentslogitnorm momentslogitnorm First two moments of the al distribution by numerical integration momentslogitnorm(mu, sigma, abs.tol = 0,...) mu parameter mu sigma parameter sigma abs.tol chaning default to integrate... further parameters to the integrate function

6 6 p Value named numeric vector with components mean: expected value, i.e. first moment var: variance, i.e. second moment Examples (res <- momentslogitnorm(4,1)) (res <- momentslogitnorm(5,0.1)) p p Distribution function for al distribution p(q, mu = 0, sigma = 1,...) q mu sigma... distribution parameters

7 q 7 q q Quantiles of al distribution. q(p, mu = 0, sigma = 1,...) p mu sigma... distribution parameters r r Random number generation for al distribution r(mu = 0, sigma = 1,...) mu distribution parameters sigma... arguments to rnorm

8 8 twcoeflogitnorm twcoeflogitnorm twcoeflogitnorm Estimating coefficients of al distribution from median and upper quantile twcoeflogitnorm(median, quant, perc = 0.975, method = "BFGS", theta0 = c(mu = 0, sigma = 1), returndetails = FALSE,...) median quant perc method theta0 returndetails... numeric vector: the median of the density function numeric vector: the upper quantile value numeric vector: the probability for which the quantile was specified method of optimization (see optim) starting parameters if TRUE, the full output of optim is attached as attributes resoptim Value numeric matrix with columns c("mu","sigma") rows correspond to rows in median, quant, and perc

9 twcoeflogitnormci 9 Examples # estimate the parameters, with median at 0.7 and upper quantile at 0.9 (theta <- twcoeflogitnorm(0.7,0.9)) x <- seq(0,1,length.out=41)[-c(1,41)] # plotting grid px <- p(x,mu=theta[1],sigma=theta[2]) #percentiles function plot(px~x); abline(v=c(0.7,0.9),col="gray"); abline(h=c(0.5,0.975),col="gray") dx <- d(x,mu=theta[1],sigma=theta[2]) #density function plot(dx~x); abline(v=c(0.7,0.9),col="gray") # vectorized (theta <- twcoeflogitnorm(seq(0.4,0.8,by=0.1),0.9)) twcoeflogitnormci twcoeflogitnormci Calculates mu and sigma of the al distribution from lower and upper quantile, i.e. confidence interval. twcoeflogitnormci(lower, upper, perc = 0.975, sigmafac = qnorm(perc), istransscale = FALSE) lower upper perc sigmafac istransscale value at the lower quantile, i.e. practical minimum value at the upper quantile, i.e. practical maximum numeric vector: the probability for which the quantile was specified sigmafac=2 is 95% sigmafac=2.6 is 99% interval if true lower and upper are already on logit scale Value named numeric vector: mu and sigma parameter of the al distribution.

10 10 twcoeflogitnorme Examples mu=2 sd=c(1,0.8) p=0.99 lower <- l <- q(1-p, mu, sd ) # p-confidence interval upper <- u <- q(p, mu, sd ) # p-confidence interval cf <- twcoeflogitnormci(lower,upper) all.equal( cf[,"mu"], c(mu,mu) ) all.equal( cf[,"sigma"], sd ) twcoeflogitnorme twcoeflogitnorme Estimating coefficients of al distribution from expected value, i.e. mean, and upper quantile. twcoeflogitnorme(mean, quant, perc = c(0.975), method = "BFGS", theta0 = c(mu = 0, sigma = 1), returndetails = FALSE,...) mean quant perc method theta0 returndetails... the expected value of the density function the quantile values the probabilites for which the quantiles were specified method of optimization (see optim) starting parameters if TRUE, the full output of optim is returned with attribut resoptim Value named numeric matrix with estimated parameters of the al distrubtion. colnames: c("mu","sigma")

11 twcoeflogitnormmle 11 Examples # estimate the parameters (thetae <- twcoeflogitnorme(0.7,0.9)) x <- seq(0,1,length.out=41)[-c(1,41)] # plotting grid px <- p(x,mu=thetae[1],sigma=thetae[2]) #percentiles function plot(px~x); abline(v=c(0.7,0.9),col="gray"); abline(h=c(0.5,0.975),col="gray") dx <- d(x,mu=thetae[1],sigma=thetae[2]) #density function plot(dx~x); abline(v=c(0.7,0.9),col="gray") z <- r(1e5, mu=thetae[1],sigma=thetae[2]) mean(z) # about 0.7 # vectorized (theta <- twcoeflogitnorme(mean=seq(0.4,0.8,by=0.1),quant=0.9)) twcoeflogitnormmle twcoeflogitnormmle Estimating coefficients of al distribution from mode and upper quantile twcoeflogitnormmle(mle, quant, perc = 0.999) mle quant perc numeric vector: the mode of the density function numeric vector: the upper quantile value numeric vector: the probability for which the quantile was specified Value numeric matrix with columns c("mu","sigma") rows correspond to rows in mle, quant, and perc

12 12 twcoeflogitnormn Examples # estimate the parameters, with mode 0.7 and upper quantile 0.9 (theta <- twcoeflogitnormmle(0.7,0.9)) x <- seq(0,1,length.out=41)[-c(1,41)] # plotting grid px <- p(x,mu=theta[1],sigma=theta[2]) #percentiles function plot(px~x); abline(v=c(0.7,0.9),col="gray"); abline(h=c(0.999),col="gray") dx <- d(x,mu=theta[1],sigma=theta[2]) #density function plot(dx~x); abline(v=c(0.7,0.9),col="gray") # vectorized (theta <- twcoeflogitnormmle(mle=seq(0.4,0.8,by=0.1),quant=0.9)) twcoeflogitnormn twcoeflogitnormn Estimating coefficients of al distribution from a vector of quantiles and perentiles (nonvectorized). twcoeflogitnormn(quant, perc = c(0.5, 0.975), method = "BFGS", theta0 = c(mu = 0, sigma = 1), returndetails = FALSE,...) Value quant perc method theta0 returndetails the quantile values the probabilites for which the quantiles were specified method of optimization (see optim) starting parameters if TRUE, the full output of optim is returned instead of only entry par... further parameters passed to optim, e.g. control=list(maxit=1000) named numeric vector with estimated parameters of the al distrubtion. names: c("mu","sigma")

13 twsigmalogitnorm 13 Examples # estimate the parameters quant=c(0.7,0.8,0.9) perc=c(0.5,0.75,0.975) (theta <- twcoeflogitnormn( quant=quant, perc=perc )) x <- seq(0,1,length.out=41)[-c(1,41)] # plotting grid px <- p(x,mu=theta[1],sigma=theta[2]) #percentiles function plot(px~x); abline(v=quant,col="gray"); abline(h=perc,col="gray") twsigmalogitnorm twsigmalogitnorm Estimating coefficients of al distribution from mode and given mu twsigmalogitnorm(mle, mu = 0) mle mu numeric vector: the mode of the density function for mu=0 the distribution will be the flattest case (maybe bimodal) Value numeric matrix with columns c("mu","sigma") rows correspond to rows in mle and mu Examples # estimate the parameters, with mode 0.7 and upper quantile 0.9 (theta <- twcoeflogitnormmle(0.7,0.9)) x <- seq(0,1,length.out=41)[-c(1,41)] # plotting grid px <- p(x,mu=theta[1],sigma=theta[2]) #percentiles function plot(px~x); abline(v=c(0.7,0.9),col="gray"); abline(h=c(0.999),col="gray") dx <- d(x,mu=theta[1],sigma=theta[2]) #density function plot(dx~x); abline(v=c(0.7,0.9),col="gray")

14 14 twsigmalogitnorm # vectorized (theta <- twcoeflogitnormmle(mle=seq(0.4,0.8,by=0.1),quant=0.9))

15 Index Topic package -package, 2 d, 2 dnorm, 3 integrate, 5 invlogit, 3, 3, 4 logit, 3, 4, 4, 4 13 (d), 2 -package, 2 modelogitnorm, 3, 5 momentslogitnorm, 3, 5 optim, 8, 10, 12 p, 3, 6 q, 3, 7 r, 3, 7 rnorm, 7 twcoeflogitnorm, 3, 8 twcoeflogitnormci, 3, 9 twcoeflogitnorme, 3, 10 twcoeflogitnormmle, 3, 11 twcoeflogitnormn, 3, 12 twsigmalogitnorm, 13 15

Package imgur. R topics documented: December 20, Type Package. Title Share plots using the imgur.com image hosting service. Version 0.1.

Package imgur. R topics documented: December 20, Type Package. Title Share plots using the imgur.com image hosting service. Version 0.1. Package imgur December 20, 2010 Type Package Title Share plots using the imgur.com image hosting service Version 0.1.4 Date 2010-12-18 Author Aaron Statham Maintainer Aaron Statham

More information

Package ihs. February 25, 2015

Package ihs. February 25, 2015 Version 1.0 Type Package Title Inverse Hyperbolic Sine Distribution Date 2015-02-24 Author Carter Davis Package ihs February 25, 2015 Maintainer Carter Davis Depends R (>= 2.4.0),

More information

Package truncreg. R topics documented: August 3, 2016

Package truncreg. R topics documented: August 3, 2016 Package truncreg August 3, 2016 Version 0.2-4 Date 2016-08-03 Title Truncated Gaussian Regression Models Depends R (>= 1.8.0), maxlik Suggests survival Description Estimation of models for truncated Gaussian

More information

Package fgpt. February 19, 2015

Package fgpt. February 19, 2015 Type Package Title Floating Grid Permutation Technique Version 2.3 Date 2015-02-19 Author Reinder Radersma & Ben Sheldon Package fgpt February 19, 2015 Maintainer Reinder Radersma

More information

Package NormalLaplace

Package NormalLaplace Version 0.2-0 Date 2011-01-10 Title The Normal Laplace Distribution Package NormalLaplace February 19, 2015 Author David Scott , Jason Shicong Fu and Simon Potter Maintainer David

More information

Package sparsereg. R topics documented: March 10, Type Package

Package sparsereg. R topics documented: March 10, Type Package Type Package Package sparsereg March 10, 2016 Title Sparse Bayesian Models for Regression, Subgroup Analysis, and Panel Data Version 1.2 Date 2016-03-01 Author Marc Ratkovic and Dustin Tingley Maintainer

More information

Package orderbook. R topics documented: February 20, Type Package Title Orderbook visualization/charting software

Package orderbook. R topics documented: February 20, Type Package Title Orderbook visualization/charting software Type Package Title Orderbook visualization/charting software Package orderbook February 20, 2015 Depends R (>= 2.15.0), methods, graphics, lattice, hash, grid Version 1.03 Date 2013-04-09 Author Andrew

More information

Package MDSGUI. February 19, 2015

Package MDSGUI. February 19, 2015 Type Package Title A GUI for interactive MDS in R Version 0.1.6 Date 2012-08-28 Author Andrew Timm and Sugnet Gardner-Lubbe Package MDSGUI February 19, 2015 Maintainer Andrew Timm Depends

More information

Package diagis. January 25, 2018

Package diagis. January 25, 2018 Type Package Package diagis January 25, 2018 Title Diagnostic Plot and Multivariate Summary Statistics of Weighted Samples from Importance Sampling Version 0.1.3-1 Date 2018-01-25 Author Jouni Helske Maintainer

More information

Package SPIn. R topics documented: February 19, Type Package

Package SPIn. R topics documented: February 19, Type Package Type Package Package SPIn February 19, 2015 Title Simulation-efficient Shortest Probability Intervals Version 1.1 Date 2013-04-02 Author Ying Liu Maintainer Ying Liu Depends R

More information

Package coxsei. February 24, 2015

Package coxsei. February 24, 2015 Type Package Title Fitting a CoxSEI Model Version 0.1 Date 2015-02-23 Author Package coxsei February 24, 2015 Maintainer It fits a CoxSEI (Cox type Self-Exciting Intensity) model to right-censored counting

More information

Package NormalGamma. February 19, 2015

Package NormalGamma. February 19, 2015 Type Package Title Normal-gamma convolution model Version 1.1 Date 2013-09-20 Author S. Plancade and Y. Rozenholc Package NormalGamma February 19, 2015 Maintainer Sandra Plancade

More information

Package logspline. February 3, 2016

Package logspline. February 3, 2016 Version 2.1.9 Date 2016-02-01 Title Logspline Density Estimation Routines Package logspline February 3, 2016 Author Charles Kooperberg Maintainer Charles Kooperberg

More information

Package samplesizelogisticcasecontrol

Package samplesizelogisticcasecontrol Package samplesizelogisticcasecontrol February 4, 2017 Title Sample Size Calculations for Case-Control Studies Version 0.0.6 Date 2017-01-31 Author Mitchell H. Gail To determine sample size for case-control

More information

Package iterators. December 12, 2017

Package iterators. December 12, 2017 Type Package Title Provides Iterator Construct for R Version 1.0.9 Package iterators December 12, 2017 Support for iterators, which allow a programmer to traverse through all the elements of a vector,

More information

Package StVAR. February 11, 2017

Package StVAR. February 11, 2017 Type Package Title Student's t Vector Autoregression (StVAR) Version 1.1 Date 2017-02-10 Author Niraj Poudyal Maintainer Niraj Poudyal Package StVAR February 11, 2017 Description Estimation

More information

Package lmesplines. R topics documented: February 20, Version

Package lmesplines. R topics documented: February 20, Version Version 1.1-10 Package lmesplines February 20, 2015 Title Add smoothing spline modelling capability to nlme. Author Rod Ball Maintainer Andrzej Galecki

More information

The simpleboot Package

The simpleboot Package The simpleboot Package April 1, 2005 Version 1.1-1 Date 2005-03-31 LazyLoad yes Depends R (>= 2.0.0), boot Title Simple Bootstrap Routines Author Maintainer Simple bootstrap

More information

Package HDInterval. June 9, 2018

Package HDInterval. June 9, 2018 Type Package Title Highest (Posterior) Density Intervals Version 0.2.0 Date 2018-06-09 Suggests coda Author Mike Meredith and John Kruschke Package HDInterval June 9, 2018 Maintainer Mike Meredith

More information

Package Kernelheaping

Package Kernelheaping Type Package Package Kernelheaping December 7, 2015 Title Kernel Density Estimation for Heaped and Rounded Data Version 1.2 Date 2015-12-01 Depends R (>= 2.15.0), evmix, MASS, ks, sparr Author Marcus Gross

More information

Package JBTools. R topics documented: June 2, 2015

Package JBTools. R topics documented: June 2, 2015 Package JBTools June 2, 2015 Title Misc Small Tools and Helper Functions for Other Code of J. Buttlar Version 0.7.2.9 Date 2015-05-20 Author Maintainer Collection of several

More information

Package assortnet. January 18, 2016

Package assortnet. January 18, 2016 Type Package Package assortnet January 18, 2016 Title Calculate the Assortativity Coefficient of Weighted and Binary Networks Version 0.12 Date 2016-01-18 Author Damien Farine Maintainer

More information

Package libstabler. June 1, 2017

Package libstabler. June 1, 2017 Version 1.0 Date 2017-05-25 Package libstabler June 1, 2017 Title Fast and Accurate Evaluation, Random Number Generation and Parameter Estimation of Skew Stable Distributions Tools for fast and accurate

More information

Package kirby21.base

Package kirby21.base Type Package Package kirby21.base October 11, 2017 Title Example Data from the Multi-Modal MRI 'Reproducibility' Resource Version 1.6.0 Date 2017-10-10 Author John Muschelli Maintainer

More information

R Programming Basics - Useful Builtin Functions for Statistics

R Programming Basics - Useful Builtin Functions for Statistics R Programming Basics - Useful Builtin Functions for Statistics Vectorized Arithmetic - most arthimetic operations in R work on vectors. Here are a few commonly used summary statistics. testvect = c(1,3,5,2,9,10,7,8,6)

More information

Package merror. November 3, 2015

Package merror. November 3, 2015 Version 2.0.2 Date 2015-10-20 Package merror November 3, 2015 Author Title Accuracy and Precision of Measurements N>=3 methods are used to measure each of n items. The data are used

More information

Package SSLASSO. August 28, 2018

Package SSLASSO. August 28, 2018 Package SSLASSO August 28, 2018 Version 1.2-1 Date 2018-08-28 Title The Spike-and-Slab LASSO Author Veronika Rockova [aut,cre], Gemma Moran [aut] Maintainer Gemma Moran Description

More information

Package qboxplot. November 12, qboxplot... 1 qboxplot.stats Index 5. Quantile-Based Boxplots

Package qboxplot. November 12, qboxplot... 1 qboxplot.stats Index 5. Quantile-Based Boxplots Package qboxplot November 12, 2017 Title Quantile-Based Boxplot Version 0.2 Date 2017-11-12 Author Tom Pike Maintainer Tom Pike Description Produce quantile-based box-and-whisker

More information

Package gsalib. R topics documented: February 20, Type Package. Title Utility Functions For GATK. Version 2.1.

Package gsalib. R topics documented: February 20, Type Package. Title Utility Functions For GATK. Version 2.1. Package gsalib February 20, 2015 Type Package Title Utility Functions For GATK Version 2.1 Date 2014-12-09 Author Maintainer Geraldine Van der Auwera This package contains

More information

Package superbiclust

Package superbiclust Type Package Package superbiclust February 20, 2015 Title Generating Robust Biclusters from a Bicluster Set (Ensemble Biclustering) Version 1.1 Date 2012-08-23 Author Maintainer

More information

Package mederrrank. R topics documented: July 8, 2015

Package mederrrank. R topics documented: July 8, 2015 Package mederrrank July 8, 2015 Title Bayesian Methods for Identifying the Most Harmful Medication Errors Version 0.0.8 Date 2015-07-06 Two distinct but related statistical approaches to the problem of

More information

Package infutil. R topics documented: February 20, Version 1.0 Date Title Information Utility Author Kristian E.

Package infutil. R topics documented: February 20, Version 1.0 Date Title Information Utility Author Kristian E. Version 1.0 Date 2013-03-28 Title Information Utility Author Package infutil February 20, 2015 Maintainer Depends ltm Enhances MASS Calculation of information utility (i.e.,

More information

Package spcadjust. September 29, 2016

Package spcadjust. September 29, 2016 Version 1.1 Date 2015-11-20 Title Functions for Calibrating Control Charts Package spcadjust September 29, 2016 Author Axel Gandy and Jan Terje Kvaloy . Maintainer

More information

Package GLDreg. February 28, 2017

Package GLDreg. February 28, 2017 Type Package Package GLDreg February 28, 2017 Title Fit GLD Regression Model and GLD Quantile Regression Model to Empirical Data Version 1.0.7 Date 2017-03-15 Author Steve Su, with contributions from:

More information

Package bootlr. July 13, 2015

Package bootlr. July 13, 2015 Type Package Package bootlr July 13, 2015 Title Bootstrapped Confidence Intervals for (Negative) Likelihood Ratio Tests Version 1.0 Date 2015-07-10 Author Keith A. Marill and Ari B. Friedman Maintainer

More information

Package TBSSurvival. January 5, 2017

Package TBSSurvival. January 5, 2017 Version 1.3 Date 2017-01-05 Package TBSSurvival January 5, 2017 Title Survival Analysis using a Transform-Both-Sides Model Author Adriano Polpo , Cassio de Campos , D.

More information

Package simtool. August 29, 2016

Package simtool. August 29, 2016 Type Package Package simtool August 29, 2016 Title Conduct Simulation Studies with a Minimal Amount of Source Code. Version 1.0.3 Date 2014-09-07 Author Marsel Scheer Maintainer

More information

Package uclaboot. June 18, 2003

Package uclaboot. June 18, 2003 Package uclaboot June 18, 2003 Version 0.1-3 Date 2003/6/18 Depends R (>= 1.7.0), boot, modreg Title Simple Bootstrap Routines for UCLA Statistics Author Maintainer

More information

Package gibbs.met. February 19, 2015

Package gibbs.met. February 19, 2015 Version 1.1-3 Title Naive Gibbs Sampling with Metropolis Steps Author Longhai Li Package gibbs.met February 19, 2015 Maintainer Longhai Li Depends R (>=

More information

Package ptinpoly. February 20, 2015

Package ptinpoly. February 20, 2015 Package ptinpoly February 20, 2015 Title Point-In-Polyhedron Test (2D and 3D) Version 2.4 Date 2014-17-03 Author Jose M. Maisog, Yuan Wang, George Luta, Jianfei Liu Maintainer Jose M. Maisog

More information

Package ICsurv. February 19, 2015

Package ICsurv. February 19, 2015 Package ICsurv February 19, 2015 Type Package Title A package for semiparametric regression analysis of interval-censored data Version 1.0 Date 2014-6-9 Author Christopher S. McMahan and Lianming Wang

More information

Package dkdna. June 1, Description Compute diffusion kernels on DNA polymorphisms, including SNP and bi-allelic genotypes.

Package dkdna. June 1, Description Compute diffusion kernels on DNA polymorphisms, including SNP and bi-allelic genotypes. Package dkdna June 1, 2015 Type Package Title Diffusion Kernels on a Set of Genotypes Version 0.1.1 Date 2015-05-31 Author Gota Morota and Masanori Koyama Maintainer Gota Morota Compute

More information

Package DSBayes. February 19, 2015

Package DSBayes. February 19, 2015 Type Package Title Bayesian subgroup analysis in clinical trials Version 1.1 Date 2013-12-28 Copyright Ravi Varadhan Package DSBayes February 19, 2015 URL http: //www.jhsph.edu/agingandhealth/people/faculty_personal_pages/varadhan.html

More information

Package fractalrock. February 19, 2015

Package fractalrock. February 19, 2015 Type Package Package fractalrock February 19, 2015 Title Generate fractal time series with non-normal returns distribution Version 1.1.0 Date 2013-02-04 Author Brian Lee Yung Rowe Maintainer Brian Lee

More information

Package GFD. January 4, 2018

Package GFD. January 4, 2018 Type Package Title Tests for General Factorial Designs Version 0.2.5 Date 2018-01-04 Package GFD January 4, 2018 Author Sarah Friedrich, Frank Konietschke, Markus Pauly Maintainer Sarah Friedrich

More information

Package stochprofml. February 20, 2015

Package stochprofml. February 20, 2015 Type Package Package stochprofml February 20, 2015 Title Stochastic Profiling using Maximum Likelihood Estimation Version 1.2 Date 2014-10-17 Author Maintainer

More information

Package MCMC4Extremes

Package MCMC4Extremes Type Package Package MCMC4Extremes July 14, 2016 Title Posterior Distribution of Extreme Models in R Version 1.1 Author Fernando Ferraz do Nascimento [aut, cre], Wyara Vanesa Moura e Silva [aut, ctb] Maintainer

More information

Package ezsim. R topics documented: February 19, Type Package

Package ezsim. R topics documented: February 19, Type Package Type Package Package ezsim February 19, 2015 Title provide an easy to use framework to conduct simulation Version 0.5.5 Date 2014-06-25 Author Maintainer ezsim provides a handy way to simulation and eamine

More information

Package cgh. R topics documented: February 19, 2015

Package cgh. R topics documented: February 19, 2015 Package cgh February 19, 2015 Version 1.0-7.1 Date 2009-11-20 Title Microarray CGH analysis using the Smith-Waterman algorithm Author Tom Price Maintainer Tom Price

More information

Package smoothmest. February 20, 2015

Package smoothmest. February 20, 2015 Package smoothmest February 20, 2015 Title Smoothed M-estimators for 1-dimensional location Version 0.1-2 Date 2012-08-22 Author Christian Hennig Depends R (>= 2.0), MASS Some

More information

Package MultiMeta. February 19, 2015

Package MultiMeta. February 19, 2015 Type Package Package MultiMeta February 19, 2015 Title Meta-analysis of Multivariate Genome Wide Association Studies Version 0.1 Date 2014-08-21 Author Dragana Vuckovic Maintainer Dragana Vuckovic

More information

Package benchden. February 19, 2015

Package benchden. February 19, 2015 Package benchden February 19, 2015 Type Package Title 28 benchmark densities from Berlinet/Devroye (1994) Version 1.0.5 Date 2012-02-29 Author Thoralf Mildenberger, Henrike Weinert, Sebastian Tiemeyer

More information

Package spark. July 21, 2017

Package spark. July 21, 2017 Title 'Sparklines' in the 'R' Terminal Version 2.0.0 Author Gábor Csárdi Package spark July 21, 2017 Maintainer Gábor Csárdi A 'sparkline' is a line chart, without axes and labels.

More information

Package epitab. July 4, 2018

Package epitab. July 4, 2018 Type Package Package epitab July 4, 2018 Title Flexible Contingency Tables for Epidemiology Version 0.2.2 Author Stuart Lacy Maintainer Stuart Lacy Builds contingency tables that

More information

Package robustreg. R topics documented: April 27, Version Date Title Robust Regression Functions

Package robustreg. R topics documented: April 27, Version Date Title Robust Regression Functions Version 0.1-10 Date 2017-04-25 Title Robust Regression Functions Package robustreg April 27, 2017 Author Ian M. Johnson Maintainer Ian M. Johnson Depends

More information

Package SHELF. August 16, 2018

Package SHELF. August 16, 2018 Type Package Package SHELF August 16, 2018 Title Tools to Support the Sheffield Elicitation Framework Version 1.4.0 Date 2018-08-15 Author Jeremy Oakley Maintainer Implements various methods for eliciting

More information

R practice. Eric Gilleland. 20th May 2015

R practice. Eric Gilleland. 20th May 2015 R practice Eric Gilleland 20th May 2015 1 Preliminaries 1. The data set RedRiverPortRoyalTN.dat can be obtained from http://www.ral.ucar.edu/staff/ericg. Read these data into R using the read.table function

More information

Package RYoudaoTranslate

Package RYoudaoTranslate Package RYoudaoTranslate February 19, 2015 Type Package Title R package provide functions to translate English s into Chinese. Version 1.0 Date 2014-02-23 Author Maintainer You can

More information

Package RWiener. February 22, 2017

Package RWiener. February 22, 2017 Version 1.3-1 Date 2017-02-22 Title Wiener Process Distribution Functions Author Dominik Wabersich [aut, cre] Package RWiener February 22, 2017 Maintainer Dominik Wabersich

More information

Package bayesdp. July 10, 2018

Package bayesdp. July 10, 2018 Type Package Package bayesdp July 10, 2018 Title Tools for the Bayesian Discount Prior Function Version 1.3.2 Date 2018-07-10 Depends R (>= 3.2.3), ggplot2, survival, methods Functions for data augmentation

More information

Package sglr. February 20, 2015

Package sglr. February 20, 2015 Package sglr February 20, 2015 Type Package Title An R package for power and boundary calculations in pre-licensure vaccine trials using a sequential generalized likelihood ratio test Version 0.7 Date

More information

Package glmmml. R topics documented: March 25, Encoding UTF-8 Version Date Title Generalized Linear Models with Clustering

Package glmmml. R topics documented: March 25, Encoding UTF-8 Version Date Title Generalized Linear Models with Clustering Encoding UTF-8 Version 1.0.3 Date 2018-03-25 Title Generalized Linear Models with Clustering Package glmmml March 25, 2018 Binomial and Poisson regression for clustered data, fixed and random effects with

More information

Package TSzip. February 15, 2013

Package TSzip. February 15, 2013 Package TSzip February 15, 2013 Version 2012.8-1 Title TSdbi extension to connect to zip files Description Provides TSdbi package methods to retrieve time series data from zipped, as if the files form

More information

Package stacomirtools

Package stacomirtools Package stacomirtools February 15, 2013 Type Package Title stacomi ODBC connection class Version 0.3 Date 2013-01-07 Author Cedric Briand Maintainer Cedric Briand S4 class wrappers

More information

Package Density.T.HoldOut

Package Density.T.HoldOut Encoding UTF-8 Type Package Package Density.T.HoldOut February 19, 2015 Title Density.T.HoldOut: Non-combinatorial T-estimation Hold-Out for density estimation Version 2.00 Date 2014-07-11 Author Nelo

More information

Package parfossil. February 20, 2015

Package parfossil. February 20, 2015 Type Package Package parfossil February 20, 2015 Title Parallelized functions for palaeoecological and palaeogeographical analysis Version 0.2.0 Date 2010-12-10 Author Matthew Vavrek

More information

Package mixexp. February 15, 2013

Package mixexp. February 15, 2013 Package mixexp February 15, 2013 Type Package Title Design and analysis of mixture experiments Version 1.0-5 Date 2011-5-24 Author John Lawson Maintainer John Lawson This

More information

Package ssd. February 20, Index 5

Package ssd. February 20, Index 5 Type Package Package ssd February 20, 2015 Title Sample Size Determination (SSD) for Unordered Categorical Data Version 0.3 Date 2014-11-30 Author Junheng Ma and Jiayang Sun Maintainer Junheng Ma

More information

Package samplingdatacrt

Package samplingdatacrt Version 1.0 Type Package Package samplingdatacrt February 6, 2017 Title Sampling Data Within Different Study Designs for Cluster Randomized Trials Date 2017-01-20 Author Diana Trutschel, Hendrik Treutler

More information

Package esabcv. May 29, 2015

Package esabcv. May 29, 2015 Package esabcv May 29, 2015 Title Estimate Number of Latent Factors and Factor Matrix for Factor Analysis Version 1.2.1 These functions estimate the latent factors of a given matrix, no matter it is highdimensional

More information

Package BTSPAS. R topics documented: February 19, Version Date Title Bayesian Time-Strat. Population Analysis

Package BTSPAS. R topics documented: February 19, Version Date Title Bayesian Time-Strat. Population Analysis Version 2014.0901 Date 2014-09-01 Title Bayesian Time-Strat. Population Analysis Package BTSPAS February 19, 2015 Author Carl J Schwarz and Simon J Bonner

More information

Package dirmcmc. R topics documented: February 27, 2017

Package dirmcmc. R topics documented: February 27, 2017 Type Package Title Directional Metropolis Hastings Algorithm Version 1.3.3 Date 2017-02-17 Author Abhirup Mallik Package dirmcmc February 27, 2017 Maintainer Abhirup Mallik

More information

Package RIFS. February 19, 2015

Package RIFS. February 19, 2015 Type Package Version 0.1-5 Date 2012-06-04 Title Random Iterated Function System (RIFS) Package RIFS February 19, 2015 Author Pavel V. Moskalev, Alexey G. Bukhovets and Tatyana Ya. Biruchinskay Maintainer

More information

Package MultiRR. October 21, 2015

Package MultiRR. October 21, 2015 Type Package Package MultiRR October 21, 2015 Title Bias, Precision, and Power for Multi-Level Random Regressions Version 1.1 Date 2015-10-21 Author Yimen G. Araya-Ajoy Maintainer Yimen G. Araya-Ajoy

More information

Package apastyle. March 29, 2017

Package apastyle. March 29, 2017 Type Package Title Generate APA Tables for MS Word Version 0.5 Date 2017-03-29 Author Jort de Vreeze [aut, cre] Package apastyle March 29, 2017 Maintainer Jort de Vreeze Most

More information

Package GaDiFPT. February 19, 2015

Package GaDiFPT. February 19, 2015 Type Package Package GaDiFPT February 19, 2015 Title First Passage Time Simulation for Gaussian Diffusion Processes Version 1.0 Date 2015-01-16 Author Maintainer Maria Francesca Carfora

More information

Package CINID. February 19, 2015

Package CINID. February 19, 2015 Package CINID February 19, 2015 Type Package Title Curculionidae INstar IDentification Version 1.2 Date 2014-10-03 Author Aurelie Siberchicot, Adrien Merville, Marie-Claude Bel-Venner and Samuel Venner

More information

Package VarianceGamma

Package VarianceGamma Version 0.3-1 Date 2012-04-13 Title The Variance Gamma Distribution Package VarianceGamma February 19, 2015 Author David Scott and Christine Yang Dong Maintainer

More information

Package pso. R topics documented: February 20, Version Date Title Particle Swarm Optimization

Package pso. R topics documented: February 20, Version Date Title Particle Swarm Optimization Version 1.0.3 Date 2012-09-02 Title Particle Swarm Optimization Package pso February 20, 2015 Author Claus Bendtsen . Maintainer Claus Bendtsen

More information

Package sfa. R topics documented: February 20, 2015

Package sfa. R topics documented: February 20, 2015 Package sfa February 20, 2015 Version 1.0-1 Date 2014-01-05 Title Stochastic Frontier Analysis Author Ariane Straub, under the supervision of Torsten Hothorn Maintainer Ariane Straub

More information

Package seg. February 15, 2013

Package seg. February 15, 2013 Package seg February 15, 2013 Version 0.2-4 Date 2013-01-21 Title A set of tools for residential segregation research Author Seong-Yun Hong, David O Sullivan Maintainer Seong-Yun Hong

More information

Package distrteach. R topics documented: January 20, Version 2.3 Date

Package distrteach. R topics documented: January 20, Version 2.3 Date Version 2.3 Date 2010-12-03 Package distrteach January 20, 2011 Title Extensions of package distr for teaching Stochastics/Statistics in secondary school Description Extensions of package distr and some

More information

Package rgcvpack. February 20, Index 6. Fitting Thin Plate Smoothing Spline. Fit thin plate splines of any order with user specified knots

Package rgcvpack. February 20, Index 6. Fitting Thin Plate Smoothing Spline. Fit thin plate splines of any order with user specified knots Version 0.1-4 Date 2013/10/25 Title R Interface for GCVPACK Fortran Package Author Xianhong Xie Package rgcvpack February 20, 2015 Maintainer Xianhong Xie

More information

Package clustvarsel. April 9, 2018

Package clustvarsel. April 9, 2018 Version 2.3.2 Date 2018-04-09 Package clustvarsel April 9, 2018 Title Variable Selection for Gaussian Model-Based Clustering Description Variable selection for Gaussian model-based clustering as implemented

More information

Package Rwinsteps. February 19, 2015

Package Rwinsteps. February 19, 2015 Version 1.0-1 Date 2012-1-30 Title Running Winsteps in R Package Rwinsteps February 19, 2015 Author Anthony Albano , Ben Babcock Maintainer Anthony Albano

More information

Package genelistpie. February 19, 2015

Package genelistpie. February 19, 2015 Type Package Package genelistpie February 19, 2015 Title Profiling a gene list into GOslim or KEGG function pie Version 1.0 Date 2009-10-06 Author Xutao Deng Maintainer Xutao Deng

More information

Package StatMeasures

Package StatMeasures Type Package Package StatMeasures March 27, 2015 Title Easy Data Manipulation, Data Quality and Statistical Checks Version 1.0 Date 2015-03-24 Author Maintainer Offers useful

More information

Package TBSSurvival. July 1, 2012

Package TBSSurvival. July 1, 2012 Package TBSSurvival July 1, 2012 Version 1.0 Date 2012-06-30 Title TBS Model R package Author Adriano Polpo , Cassio de Campos , D. Sinha , Stuart

More information

Package detect. February 15, 2013

Package detect. February 15, 2013 Package detect February 15, 2013 Type Package Title Analyzing Wildlife Data with Detection Error Version 0.2-2 Date 2012-05-02 Author Peter Solymos, Monica Moreno, Subhash R Lele Maintainer Peter Solymos

More information

Package distance.sample.size

Package distance.sample.size Type Package Package distance.sample.size January 26, 2016 Title Calculates Study Size Required for Distance Sampling Version 0.0 Date 2015-12-17 Author Robert Clark Maintainer Robert Clark

More information

Regression on the trees data with R

Regression on the trees data with R > trees Girth Height Volume 1 8.3 70 10.3 2 8.6 65 10.3 3 8.8 63 10.2 4 10.5 72 16.4 5 10.7 81 18.8 6 10.8 83 19.7 7 11.0 66 15.6 8 11.0 75 18.2 9 11.1 80 22.6 10 11.2 75 19.9 11 11.3 79 24.2 12 11.4 76

More information

Package longitudinal

Package longitudinal Package longitudinal February 15, 2013 Version 1.1.7 Date 2012-01-22 Title Analysis of Multiple Time Course Data Author Rainer Opgen-Rhein and Korbinian Strimmer. Maintainer Korbinian Strimmer

More information

Package bestnormalize

Package bestnormalize Type Package Title Normalizing Transformation Functions Version 1.0.1 Date 2018-02-05 Package bestnormalize February 5, 2018 Estimate a suite of normalizing transformations, including a new adaptation

More information

Package GUTS. R topics documented: October 10, Type Package

Package GUTS. R topics documented: October 10, Type Package Type Package Package GUTS October 10, 2017 Title Fast Calculation of the Likelihood of a Stochastic Survival Model Version 1.0.4 Date 2017-10-09 Author Carlo Albert and Sören Vogel

More information

Package clusterpower

Package clusterpower Version 0.6.111 Date 2017-09-03 Package clusterpower September 5, 2017 Title Power Calculations for Cluster-Randomized and Cluster-Randomized Crossover Trials License GPL (>= 2) Imports lme4 (>= 1.0) Calculate

More information

Package MeanShift. R topics documented: August 29, 2016

Package MeanShift. R topics documented: August 29, 2016 Package MeanShift August 29, 2016 Type Package Title Clustering via the Mean Shift Algorithm Version 1.1-1 Date 2016-02-05 Author Mattia Ciollaro and Daren Wang Maintainer Mattia Ciollaro

More information

Package RcmdrPlugin.survival

Package RcmdrPlugin.survival Type Package Package RcmdrPlugin.survival October 21, 2017 Title R Commander Plug-in for the 'survival' Package Version 1.2-0 Date 2017-10-21 Author John Fox Maintainer John Fox Depends

More information

Package gridgraphics

Package gridgraphics Package gridgraphics Title Redraw Base Graphics Using 'grid' Graphics Version 0.2 June 6, 2017 Description Functions to convert a page of plots drawn with the graphics package into identical output drawn

More information

Package TilePlot. February 15, 2013

Package TilePlot. February 15, 2013 Package TilePlot February 15, 2013 Type Package Title Characterization of functional genes in complex microbial communities using tiling DNA microarrays Version 1.3 Date 2011-05-04 Author Ian Marshall

More information

Lecture 6: Chapter 6 Summary

Lecture 6: Chapter 6 Summary 1 Lecture 6: Chapter 6 Summary Z-score: Is the distance of each data value from the mean in standard deviation Standardizes data values Standardization changes the mean and the standard deviation: o Z

More information