Package visualize. April 28, 2017

Size: px
Start display at page:

Download "Package visualize. April 28, 2017"

Transcription

1 Type Package Package visualize April 28, 2017 Title Graph Probability Distributions with User Supplied Parameters and Statistics Version Date Depends R (>= 3.0.0) Graphs the pdf or pmf and highlights what area or probability is present in user defined locations. Visualize is able to provide lower tail, bounded, upper tail, and two tail calculations. Supports strict and equal to inequalities. Also provided on the graph is the mean and variance of the distribution. License MIT + file LICENSE URL BugReports RoxygenNote NeedsCompilation no Author [aut, cph, cre] Maintainer <james.balamuta@gmail.com> Repository CRAN Date/Publication :12:47 UTC R topics documented: visualize-package visualize.beta visualize.binom visualize.cauchy visualize.chisq visualize.continuous

2 2 visualize-package visualize.discrete visualize.exp visualize.f visualize.gamma visualize.geom visualize.hyper visualize.it visualize.lnorm visualize.logis visualize.nbinom visualize.norm visualize.pois visualize.t visualize.unif visualize.wilcox Index 24 visualize-package visualize: Graph Probability Distributions with User Supplied Parameters and Statistics Graphs the pdf or pmf and highlights what area or probability is present in user defined locations. Visualize is able to provide lower tail, bounded, upper tail, and two tail calculations. Supports strict and equal to inequalities. Also provided on the graph is the mean and variance of the distribution. Maintainer: <james.balamuta@gmail.com> [copyright holder] Useful links: Report bugs at ## visualize.it acts as the general wrapper. ## For guided application of visualize, see the visualize.distr_name list. # Binomial distribution evaluated at lower tail. visualize.it(dist = 'binom', = 2, params = list(size = 4,prob =.5), ="lower", strict = TRUE) visualize.binom( = 2, size = 4, prob =.5, ="lower", strict = TRUE)

3 visualize.beta 3 # Set to shade inbetween a bounded region. visualize.it(dist = 'norm', = c(-1, 1), list(mu = 0, sd = 1), ="bounded") visualize.norm( = c(-1, 1), mu = 0, sd = 1, ="bounded") # Gamma distribution evaluated at upper tail. visualize.it(dist = 'gamma', = 2, params = list(alpha = 2, theta = 1), ="upper") visualize.gamma( = 2, alpha = 2, theta = 1, ="upper") visualize.beta Visualize Beta Distribution Generates a plot of the Beta distribution with user specified parameters. visualize.beta( = 1, alpha = 3, beta = 2, = "lower") alpha beta alpha is considered to be shape1 by R s implementation of the beta distribution. alpha must be greater than 0. beta is considered to be shape2 by R s implementation of the beta distribution. beta must be greater than 0. Select how you want the istic(s) evaluated via = either "lower","bounded", Value Returns a plot of the distribution according to the conditions supplied. visualize.it, dbeta.

4 4 visualize.binom visualize.beta( = 1, alpha = 2, beta = 3, = "lower") visualize.beta( = c(.5,1), alpha = 4, beta = 3, = "bounded") visualize.beta( = 1, alpha = 2, beta = 3, = "upper") visualize.binom Visualize Binomial Distribution Generates a plot of the Binomial distribution with user specified parameters. visualize.binom( = 1, size = 3, prob = 0.5, = "lower", strict = FALSE) size prob strict size of sample. probability of picking object. Select how you want the istic(s) evaluated via = either "lower","bounded", Determines whether the probability will be generated as a strict (<, >) or equal to (<=, >=) inequality. strict= requires either values = 0 or =FALSE for equal to OR values =1 or =TRUE for strict. For bounded condition use: strict=c(0,1) or strict=c(false,true). visualize.it, dbinom.

5 visualize.cauchy 5 # Evaluates lower tail with equal to inequality. visualize.binom( = 1, size = 3, prob = 0.5, = "lower", strict = FALSE) # Evaluates bounded region with lower bound equal to and upper bound strict inequality. visualize.binom( = c(1,2), size = 5, prob = 0.35, = "bounded", strict = c(0,1)) # Evaluates upper tail with strict inequality. visualize.binom( = 1, size = 3, prob = 0.5, = "upper", strict = TRUE) visualize.cauchy Visualize Cauchy Distribution Generates a plot of the Cauchy distribution with user specified parameters. visualize.cauchy( = 1, location = 2, scale = 1, = "lower") location scale location parameter scale parameter Select how you want the istic(s) evaluated via = either "lower","bounded", Value Returns a plot of the distribution according to the conditions supplied. visualize.it, dcauchy.

6 6 visualize.chisq visualize.cauchy( = 1, location = 4, scale = 2, = "lower") visualize.cauchy( = c(3,5), location = 5, scale = 3, = "bounded") visualize.cauchy( = 1, location = 4, scale = 2, = "upper") visualize.chisq Visualize Chi-squared Distribution Generates a plot of the Chi-squared distribution with user specified parameters. visualize.chisq( = 1, df = 3, = "lower") df degrees of freedom of Chi-squared distribution. Select how you want the istic(s) evaluated via = either "lower","bounded", Value Returns a plot of the distribution according to the conditions supplied. visualize.it, dchisq.

7 visualize.continuous 7 visualize.chisq( = 1, df = 3, = "lower") visualize.chisq( = c(1,2), df = 6, = "bounded") visualize.chisq( = 1, df = 3, = "upper") visualize.continuous Graphing function for Continuous Distributions. Handles how continuous distributions are graphed. Users should not use this function. Instead, users should use visualize.it. visualize.continuous(dist, = c(0, 1), params, = "lower") dist contains the distribution from visualize.distributions. params A list that must contain the necessary parameters for each distribution. For example, params = list(mu = 1, sd = 1) would be for a normal distribution with mean 1 and standard deviation 1. If you are not aware of the parameters for the distribution, consider using the visualize.dist_name functions listed under the "". Select how you want the istic(s) evaluated via = either "lower","bounded", visualize.it, visualize.beta, visualize.chisq, visualize.exp, visualize.gamma, visualize.norm, visualize.unif, visualize.cauchy*, visualize.f*, visualize.lnorm*, visualize.t*, visualize.wilcox*, visualize.logis*. * = added in v2.0.

8 8 visualize.discrete # Function does not have dist look up, must go through visualize.it visualize.it(dist='norm', = c(0,1), params = list(mu = 1, sd = 1), = "bounded") visualize.discrete Graphing function for Discrete Distributions. Handles how discrete distributions are graphed. Users should not use this function. Instead, users should use link{visualize.it}. visualize.discrete(dist, = c(0, 1), params, = "lower", strict) dist contains the distribution from link{visualize.distributions}. params A list that must contain the necessary parameters for each distribution. For example, params = list(n = 5, prob =.25) would be for a binomial distribution with size 5 and probability.75. If you are not aware of the parameters for the distribution, consider using the visualize.dist_name functions listed under the "". strict Select how you want the istic(s) evaluated via = either "lower","bounded", Determines whether the probability will be generated as a strict (<, >) or equal to (<=, >=) inequality. strict= requires either values = 0 or =FALSE for equal to OR values =1 or =TRUE for strict. For bounded condition use: strict=c(0,1) or strict=c(false,true). visualize.it, visualize.binom, visualize.geom, visualize.hyper, visualize.nbinom, visualize.pois.

9 visualize.exp 9 # Function does not have dist look up, must go through visualize.it visualize.it(dist='geom', = c(2,4), params = list(prob =.75), = "bounded", strict = c(0,1)) visualize.exp Visualize Exponential Distribution Generates a plot of the Exponential distribution with user specified parameters. visualize.exp( = 1, theta = 1, = "lower") theta vector of rates Select how you want the istic(s) evaluated via = either "lower","bounded", Value Returns a plot of the distribution according to the conditions supplied. visualize.it, dexp. visualize.exp( =.5, theta = 3, = "lower") visualize.exp( = c(1,2), theta = 3, = "bounded")

10 10 visualize.f visualize.exp( =.5, theta = 3, = "upper") visualize.f Visualize F distribution Generates a plot of the F distribution with user specified parameters. visualize.f( = 1, df1 = 5, df2 = 4, = "lower") df1 df2 First Degrees of Freedom Second Degrees of Freedom Select how you want the istic(s) evaluated via = either "lower","bounded", Value Returns a plot of the distribution according to the conditions supplied. visualize.it, df. visualize.f( = 1, df1 = 5, df2 = 4, = "lower") visualize.f( = c(3,5), df1 = 6, df2 = 3, = "bounded") visualize.f( = 1, df1 = 5, df2 = 4, = "upper")

11 visualize.gamma 11 visualize.gamma Visualize Gamma Distribution Generates a plot of the Gamma distribution with user specified parameters. visualize.gamma( = 1, alpha = 1, theta = 1, = "lower") alpha theta alpha is considered to be shape by R s implementation of the gamma distribution. alpha must be greater than 0. theta is considered to be rate by R s implementation of the gamma distribution. theta must be greater than 0. Select how you want the istic(s) evaluated via = either "lower","bounded", visualize.it, dgamma. # Evaluate lower tail. visualize.gamma( = 1, alpha = 3, theta = 1, = "lower") # Evaluate bounded. visualize.gamma( = c(0.75,1), alpha = 3, theta = 1, = "bounded") # Evaluate upper tail. visualize.gamma( = 1, alpha = 3, theta = 1, = "upper")

12 12 visualize.geom visualize.geom Visualize Geometric Distribution Generates a plot of the Geometric distribution with user specified parameters. visualize.geom( = 1, prob = 0.3, = "lower", strict = FALSE) prob strict probability of picking object. Select how you want the istic(s) evaluated via = either "lower","bounded", Determines whether the probability will be generated as a strict (<, >) or equal to (<=, >=) inequality. strict= requires either values = 0 or =FALSE for equal to OR values =1 or =TRUE for strict. For bounded condition use: strict=c(0,1) or strict=c(false,true). visualize.it, dgeom. visualize.geom( = 1, prob = 0.5, = "lower", strict = FALSE) visualize.geom( = c(1,3), prob = 0.35, = "bounded", strict = c(0,1)) visualize.geom( = 1, prob = 0.5, = "upper", strict = 1)

13 visualize.hyper 13 visualize.hyper Visualize Hypergeometric Distribution Generates a plot of the Hypergeometric distribution with user specified parameters. visualize.hyper( = 1, m = 5, n = 4, k = 2, = "lower", strict = FALSE) m m white balls. m must be greater than 0. n n black balls. n must be greater than 0. k strict visualize.it, dhyper. draw k balls without replacement. Select how you want the istic(s) evaluated via = either "lower","bounded", Determines whether the probability will be generated as a strict (<, >) or equal to (<=, >=) inequality. strict= requires either values = 0 or =FALSE for equal to OR values =1 or =TRUE for strict. For bounded condition use: strict=c(0,1) or strict=c(false,true). visualize.hyper( = 1, m=4, n=5, k=3, = "lower", strict = 0) visualize.hyper( = c(2,4), m=14, n=5, k=2, = "bounded", strict = c(0,1)) visualize.hyper( = 1, m=4, n=5, k=3, = "upper", strict = 1)

14 14 visualize.it visualize.it Visualize s Processing Function Acts as a director of traffic and first line of error handling regarding submitted visualization requests. This function should only be used by advanced users. visualize.it(dist = "norm", = c(0, 1), params = list(mu = 0, sd = 1), = "lower", strict = c(0, 1)) Value dist a string that should be contain a supported probability distributions name in R. Supported continuous distributions: "beta", "chisq", "exp", "gamma", "norm", and "unif". Supported discrete distributions: "binom", "geom", "hyper", "nbinom", and "pois". params A list that must contain the necessary parameters for each distribution. For example, params = list(mu = 1, sd = 1) would be for a normal distribution with mean 1 and standard deviation 1. If you are not aware of the parameters for the distribution, consider using the visualize.dist functions listed under the "". strict Select how you want the istic(s) evaluated via = either "lower","bounded", Determines whether the probability will be generated as a strict (<, >) or equal to (<=, >=) inequality. strict= requires either values = 0 or =FALSE for strict OR values =1 or =TRUE for equal to. For bounded condition use: strict=c(0,1) or strict=c(false,true). Returns a plot of the distribution according to the conditions supplied. References

15 visualize.lnorm 15 visualize.beta, visualize.chisq, visualize.exp, visualize.gamma, visualize.norm, visualize.unif, visualize.binom, visualize.geom, visualize.hyper, visualize.nbinom, visualize.pois. # Defaults to lower tail evaluation visualize.it(dist = 'norm', = 1, list(mu = 3, sd = 2), = "lower") # Set to evaluate the upper tail. visualize.it(dist = 'norm', = 1, list(mu=3,sd=2),="upper") # Set to shade inbetween a bounded region. visualize.it(dist = 'norm', = c(-1,1), list(mu=0,sd=1), ="bounded") # Gamma distribution evaluated at upper tail. visualize.it(dist = 'gamma', = 2, params = list(alpha=2,beta=1),="upper") # Binomial distribution evaluated at lower tail. visualize.it('binom', = 2, params = list(n=4,p=.5)) visualize.lnorm Visualize Log Normal Distribution Generates a plot of the Log Normal distribution with user specified parameters. visualize.lnorm( = 1, meanlog = 3, sdlog = 1, = "lower") meanlog sdlog Mean of the distribution Standard deviation of the distribution Select how you want the istic(s) evaluated via = either "lower","bounded", Value Returns a plot of the distribution according to the conditions supplied.

16 16 visualize.logis visualize.it, dlnorm. visualize.lnorm( = 1, meanlog = 3, sdlog = 1, = "lower") visualize.lnorm( = c(3,5), meanlog = 3, sdlog = 3, = "bounded") visualize.lnorm( = 1, meanlog = 3, sdlog = 1, = "upper") visualize.logis Visualize Logistic distribution Generates a plot of the Logistic distribution with user specified parameters. visualize.logis( = 1, location = 3, scale = 1, = "lower") location scale Location of the distribution. Scale of the distribution. Select how you want the istic(s) evaluated via = either "lower","bounded", Value Returns a plot of the distribution according to the conditions supplied.

17 visualize.nbinom 17 visualize.it, dlogis. visualize.logis( = 1, location = 4, scale = 2, = "lower") visualize.logis( = c(3,5), location = 4, scale = 2, = "bounded") visualize.logis( = 1, location = 4, scale = 2, = "upper") visualize.nbinom Visualize Negative Binomial Distribution Generates a plot of the Negative Binomial distribution with user specified parameters. visualize.nbinom( = 1, size = 6, prob = 0.5, = "lower", strict = FALSE) size prob strict number of objects. probability of picking object. Select how you want the istic(s) evaluated via = either "lower","bounded", Determines whether the probability will be generated as a strict (<, >) or equal to (<=, >=) inequality. strict= requires either values = 0 or = FALSE for equal to OR values =1 or =TRUE for strict. For bounded condition use: strict=c(0,1) or strict=c(false,true).

18 18 visualize.norm visualize.it, dnbinom. visualize.nbinom( = 1, size = 5, prob = 0.5, = "lower", strict = 0) visualize.nbinom( = c(1,3), size = 10, prob = 0.35, = "bounded", strict = c(true, FALSE)) visualize.nbinom( = 1, size = 5, prob = 0.5, = "upper", strict = 1) visualize.norm Visualize Normal Distribution Generates a plot of the Normal distribution with user specified parameters. visualize.norm( = 1, mu = 0, sd = 1, = "lower") mu sd mean of the Normal Distribution. standard deviation of the Normal Distribution. Select how you want the istic(s) evaluated via = either "lower","bounded", visualize.it, dnorm.

19 visualize.pois 19 visualize.norm( = 1, mu = 4, sd = 5, = "lower") visualize.norm( = c(3,6), mu = 5, sd = 3, = "bounded") visualize.norm( = 1, mu = 3, sd = 2, = "upper") visualize.pois Visualize Poisson Distribution Generates a plot of the Poisson distribution with user specified parameters. visualize.pois( = 1, lambda = 3.5, = "lower", strict = FALSE) lambda strict lambda value of the Poisson Distribution. Select how you want the istic(s) evaluated via = either "lower","bounded", Determines whether the probability will be generated as a strict (<, >) or equal to (<=, >=) inequality. strict= requires either values = 0 or =FALSE for equal to OR values =1 or =TRUE for strict. For bounded condition use: strict=c(0,1) or strict=c(false,true). visualize.it, dpois.

20 20 visualize.t visualize.pois( = 1, lambda = 2, = "lower", strict = FALSE) visualize.pois( = c(1,3), lambda = 3, = "bounded", strict = c(0,1)) visualize.pois( = 1, lambda = 2, = "upper", strict = 1) visualize.t Visualize Student s t distribution Generates a plot of the Student s t distribution with user specified parameters. visualize.t( = 1, df = 3, = "lower") df Degrees of freedom Select how you want the istic(s) evaluated via = either "lower","bounded", Value Returns a plot of the distribution according to the conditions supplied. visualize.it, dt.

21 visualize.unif 21 visualize.t( = 1, df = 4, = "lower") visualize.t( = c(3,5), df = 6, = "bounded") visualize.t( = 1, df = 4, = "upper") visualize.unif Visualize Uniform Distribution Generates a plot of the Uniform distribution with user specified parameters. visualize.unif( = 1, a = 0, b = 1, = "lower") a b starting point. Note: a<b end point. Note: b > a Select how you want the istic(s) evaluated via = either "lower","bounded", visualize.it, dunif.

22 22 visualize.wilcox visualize.unif( = 8.75, a = 7, b = 10, = "lower") visualize.unif( = c(3,6), a = 1, b = 7, = "bounded") visualize.unif( = 2, a = 1, b = 5, = "upper") visualize.wilcox Visualize Cauchy Distribution Generates a plot of the Wilcoxon Rank Sum distribution with user specified parameters. visualize.wilcox( = 1, m = 7, n = 3, = "lower") m Sample size from group 1. n Sample size from group 2. Select how you want the istic(s) evaluated via = either "lower","bounded", Value Returns a plot of the distribution according to the conditions supplied. visualize.it, dwilcox.

23 visualize.wilcox 23 visualize.wilcox( = 1, m = 7, n = 3, = "lower") visualize.wilcox( = c(2,3), m = 5, n = 4, = "bounded") visualize.wilcox( = 1, m = 7, n = 3, = "upper")

24 Index Topic visualize visualize.beta, 3 visualize.binom, 4 visualize.cauchy, 5 visualize.chisq, 6 visualize.continuous, 7 visualize.discrete, 8 visualize.exp, 9 visualize.f, 10 visualize.gamma, 11 visualize.geom, 12 visualize.hyper, 13 visualize.it, 14 visualize.lnorm, 15 visualize.logis, 16 visualize.nbinom, 17 visualize.norm, 18 visualize.pois, 19 visualize.t, 20 visualize.unif, 21 visualize.wilcox, 22 dbeta, 3 dbinom, 4 dcauchy, 5 dchisq, 6 dexp, 9 df, 10 dgamma, 11 dgeom, 12 dhyper, 13 dlnorm, 16 dlogis, 17 dnbinom, 18 dnorm, 18 dpois, 19 dt, 20 dunif, 21 dwilcox, 22 visualize (visualize-package), 2 visualize-package, 2 visualize.beta, 3, 7, 15 visualize.binom, 4, 8, 15 visualize.cauchy, 5, 7 visualize.chisq, 6, 7, 15 visualize.continuous, 7 visualize.discrete, 8 visualize.distributions, 7 visualize.exp, 7, 9, 15 visualize.f, 7, 10 visualize.gamma, 7, 11, 15 visualize.geom, 8, 12, 15 visualize.hyper, 8, 13, 15 visualize.it, 3 13, 14, visualize.lnorm, 7, 15 visualize.logis, 7, 16 visualize.nbinom, 8, 15, 17 visualize.norm, 7, 15, 18 visualize.pois, 8, 15, 19 visualize.t, 7, 20 visualize.unif, 7, 15, 21 visualize.wilcox, 7, 22 24

Maximum Likelihood Estimation of Neighborhood Models using Simulated Annealing

Maximum Likelihood Estimation of Neighborhood Models using Simulated Annealing Lora Murphy October, 2005 Maximum Likelihood Estimation of Neighborhood Models using Simulated Annealing A User s Guide to the neighparam Package for R 1. Syntax...2 2. Getting Ready for R...2 3. The First

More information

A Quick Introduction to R

A Quick Introduction to R Math 4501 Fall 2012 A Quick Introduction to R The point of these few pages is to give you a quick introduction to the possible uses of the free software R in statistical analysis. I will only expect you

More information

Stat 302 Statistical Software and Its Applications SAS: Distributions

Stat 302 Statistical Software and Its Applications SAS: Distributions Stat 302 Statistical Software and Its Applications SAS: Distributions Yen-Chi Chen Department of Statistics, University of Washington Autumn 2016 1 / 39 Distributions in R and SAS Distribution R SAS Beta

More information

Package smovie. April 21, 2018

Package smovie. April 21, 2018 Type Package Package smovie April 21, 2018 Title Some Movies to Illustrate Concepts in Statistics Version 1.0.1 Date 2018-04-21 Description Provides movies to help students to understand statistical concepts.

More information

The distr Package. May 12, 2006

The distr Package. May 12, 2006 The distr Package May 12, 2006 Version 1.7 Date 2006-05-11 Title Object orientated implementation of distributions Object orientated implementation of distributions Author Florian Camphausen, Matthias

More information

An introduction to R WS 2013/2014

An introduction to R WS 2013/2014 An introduction to R WS 2013/2014 Dr. Noémie Becker (AG Metzler) Dr. Sonja Grath (AG Parsch) Special thanks to: Dr. Martin Hutzenthaler (previously AG Metzler, now University of Frankfurt) course development,

More information

Package UnivRNG. R topics documented: January 10, Type Package

Package UnivRNG. R topics documented: January 10, Type Package Type Package Package UnivRNG January 10, 2018 Title Univariate Pseudo-Random Number Generation Version 1.1 Date 2018-01-10 Author Hakan Demirtas, Rawan Allozi Maintainer Rawan Allozi

More information

Package fitur. March 11, 2018

Package fitur. March 11, 2018 Title Fit Univariate Distributions Version 0.5.25 Package fitur March 11, 2018 Wrapper for computing parameters for univariate distributions using MLE. It creates an object that stores d, p, q, r functions

More information

Package BayesCR. September 11, 2017

Package BayesCR. September 11, 2017 Type Package Package BayesCR September 11, 2017 Title Bayesian Analysis of Censored Regression Models Under Scale Mixture of Skew Normal Distributions Version 2.1 Author Aldo M. Garay ,

More information

Package citools. October 20, 2018

Package citools. October 20, 2018 Type Package Package citools October 20, 2018 Title Confidence or Prediction Intervals, Quantiles, and Probabilities for Statistical Models Version 0.5.0 Maintainer John Haman Functions

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 ECctmc. May 1, 2018

Package ECctmc. May 1, 2018 Type Package Package ECctmc May 1, 2018 Title Simulation from Endpoint-Conditioned Continuous Time Markov Chains Version 0.2.5 Date 2018-04-30 URL https://github.com/fintzij/ecctmc BugReports https://github.com/fintzij/ecctmc/issues

More information

StatsMate. User Guide

StatsMate. User Guide StatsMate User Guide Overview StatsMate is an easy-to-use powerful statistical calculator. It has been featured by Apple on Apps For Learning Math in the App Stores around the world. StatsMate comes with

More information

Package birtr. October 4, 2017

Package birtr. October 4, 2017 Package birtr October 4, 2017 Title The R Package for ``The Basics of Item Response Theory Using R'' Version 1.0.0 Maintainer Seock-Ho Kim R functions for ``The Basics of Item Response

More information

R topics documented: 2 genbernoullidata

R topics documented: 2 genbernoullidata Type Package Package BayesCTDesign August 14, 2018 Title Two Arm Bayesian Clinical Trial Design with and Without Historical Control Data Version 0.5.0 Description A set of functions to help clinical trial

More information

Fathom Dynamic Data TM Version 2 Specifications

Fathom Dynamic Data TM Version 2 Specifications Data Sources Fathom Dynamic Data TM Version 2 Specifications Use data from one of the many sample documents that come with Fathom. Enter your own data by typing into a case table. Paste data from other

More information

Package repec. August 31, 2018

Package repec. August 31, 2018 Type Package Title Access RePEc Data Through API Version 0.1.0 Package repec August 31, 2018 Utilities for accessing RePEc (Research Papers in Economics) through a RESTful API. You can request a and get

More information

Package pwrab. R topics documented: June 6, Type Package Title Power Analysis for AB Testing Version 0.1.0

Package pwrab. R topics documented: June 6, Type Package Title Power Analysis for AB Testing Version 0.1.0 Type Package Title Power Analysis for AB Testing Version 0.1.0 Package pwrab June 6, 2017 Maintainer William Cha Power analysis for AB testing. The calculations are based

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

CREATING SIMULATED DATASETS Edition by G. David Garson and Statistical Associates Publishing Page 1

CREATING SIMULATED DATASETS Edition by G. David Garson and Statistical Associates Publishing Page 1 Copyright @c 2012 by G. David Garson and Statistical Associates Publishing Page 1 @c 2012 by G. David Garson and Statistical Associates Publishing. All rights reserved worldwide in all media. No permission

More information

1 Pencil and Paper stuff

1 Pencil and Paper stuff Spring 2008 - Stat C141/ Bioeng C141 - Statistics for Bioinformatics Course Website: http://www.stat.berkeley.edu/users/hhuang/141c-2008.html Section Website: http://www.stat.berkeley.edu/users/mgoldman

More information

Package wrswor. R topics documented: February 2, Type Package

Package wrswor. R topics documented: February 2, Type Package Type Package Package wrswor February 2, 2018 Title Weighted Random Sampling without Replacement Version 1.1 Date 2018-02-02 Description A collection of implementations of classical and novel algorithms

More information

Package sfc. August 29, 2016

Package sfc. August 29, 2016 Type Package Title Substance Flow Computation Version 0.1.0 Package sfc August 29, 2016 Description Provides a function sfc() to compute the substance flow with the input files --- ``data'' and ``model''.

More information

Biostatistics & SAS programming. Kevin Zhang

Biostatistics & SAS programming. Kevin Zhang Biostatistics & SAS programming Kevin Zhang February 27, 2017 Random variables and distributions 1 Data analysis Simulation study Apply existing methodologies to your collected samples, with the hope to

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 stratifyr. April 12, Type Package

Package stratifyr. April 12, Type Package Type Package Package stratifyr April 12, 2018 Title Optimal Stratification of Univariate Populations Version 1.0-1 Date 2018-04-11 Author Karuna G. Reddy [aut, cre], M. G. M. Khan [aut] Maintainer Karuna

More information

Package TVsMiss. April 5, 2018

Package TVsMiss. April 5, 2018 Type Package Title Variable Selection for Missing Data Version 0.1.1 Date 2018-04-05 Author Jiwei Zhao, Yang Yang, and Ning Yang Maintainer Yang Yang Package TVsMiss April 5, 2018

More information

Package ibm. August 29, 2016

Package ibm. August 29, 2016 Version 0.1.0 Title Individual Based Models in R Package ibm August 29, 2016 Implementation of some (simple) Individual Based Models and methods to create new ones, particularly for population dynamics

More information

Package humanize. R topics documented: April 4, Version Title Create Values for Human Consumption

Package humanize. R topics documented: April 4, Version Title Create Values for Human Consumption Version 0.2.0 Title Create s for Human Consumption Package humanize April 4, 2018 An almost direct port of the 'python' 'humanize' package . This package contains utilities

More information

Package tsbugs. February 20, 2015

Package tsbugs. February 20, 2015 Type Package Title Create time series BUGS models. Version 1.2 Author Guy J. Abel Package tsbugs February 20, 2015 Maintainer ``Guy J. Abel'' Depends R(>= 2.15.2) Suggests R2OpenBUGS,

More information

Package Rtsne. April 14, 2017

Package Rtsne. April 14, 2017 Type Package Package Rtsne April 14, 2017 Title T-Distributed Stochastic Neighbor Embedding using a Barnes-Hut Implementation Version 0.13 Description An R wrapper around the fast T-distributed Stochastic

More information

Package sspse. August 26, 2018

Package sspse. August 26, 2018 Type Package Version 0.6 Date 2018-08-24 Package sspse August 26, 2018 Title Estimating Hidden Population Size using Respondent Driven Sampling Data Maintainer Mark S. Handcock

More information

Basic C++ through Rcpp

Basic C++ through Rcpp Basic C++ through Rcpp Advanced Statistical Programming Camp Jonathan Olmsted (Q-APS) Day 3: May 29th, 2014 PM Session ASPC Basic C++ through Rcpp Day 3 PM 1 / 30 Outline 1 Practice 2 Rcpp Sugar 3 RNG

More information

Package nltt. October 12, 2016

Package nltt. October 12, 2016 Type Package Title Calculate the NLTT Statistic Version 1.3.1 Package nltt October 12, 2016 Provides functions to calculate the normalised Lineage-Through- Time (nltt) statistic, given two phylogenetic

More information

Package bayesab. July 14, 2018

Package bayesab. July 14, 2018 Type Package Title Fast Bayesian Methods for AB Testing Version 1.1.1 Date 2018-07-14 Package bayesab July 14, 2018 A suite of functions that allow the user to analyze A/B test data in a Bayesian framework.

More information

Package cattonum. R topics documented: May 2, Type Package Version Title Encode Categorical Features

Package cattonum. R topics documented: May 2, Type Package Version Title Encode Categorical Features Type Package Version 0.0.2 Title Encode Categorical Features Package cattonum May 2, 2018 Functions for dummy encoding, frequency encoding, label encoding, leave-one-out encoding, mean encoding, median

More information

Package weco. May 4, 2018

Package weco. May 4, 2018 Package weco May 4, 2018 Title Western Electric Company Rules (WECO) for Shewhart Control Chart Version 1.2 Author Chenguang Wang [aut, cre], Lingmin Zeng [aut], Zheyu Wang [aut], Wei Zhao1 [aut], Harry

More information

1. Start WinBUGS by double clicking on the WinBUGS icon (or double click on the file WinBUGS14.exe in the WinBUGS14 directory in C:\Program Files).

1. Start WinBUGS by double clicking on the WinBUGS icon (or double click on the file WinBUGS14.exe in the WinBUGS14 directory in C:\Program Files). Hints on using WinBUGS 1 Running a model in WinBUGS 1. Start WinBUGS by double clicking on the WinBUGS icon (or double click on the file WinBUGS14.exe in the WinBUGS14 directory in C:\Program Files). 2.

More information

Package projector. February 27, 2018

Package projector. February 27, 2018 Package projector February 27, 2018 Title Project Dense Vectors Representation of Texts on a 2D Plan Version 0.0.2 Date 2018-02-27 Maintainer Michaël Benesty Display dense vector representation

More information

Package ipft. January 4, 2018

Package ipft. January 4, 2018 Type Package Title Indoor Positioning Fingerprinting Toolset Depends R (>= 2.10) Version 0.7.2 Maintainer Emilio Sansano Package ipft January 4, 2018 Algorithms and utility functions

More information

Package pdfsearch. July 10, 2018

Package pdfsearch. July 10, 2018 Type Package Version 0.2.3 License MIT + file LICENSE Title Search Tools for PDF Files Package pdfsearch July 10, 2018 Includes functions for keyword search of pdf files. There is also a wrapper that includes

More information

Package reval. May 26, 2015

Package reval. May 26, 2015 Package reval May 26, 2015 Title Repeated Function Evaluation for Sensitivity Analysis Version 2.0.0 Date 2015-05-25 Author Michael C Koohafkan [aut, cre] Maintainer Michael C Koohafkan

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 rbraries. April 18, 2018

Package rbraries. April 18, 2018 Title Interface to the 'Libraries.io' API Package rbraries April 18, 2018 Interface to the 'Libraries.io' API (). 'Libraries.io' indexes data from 36 different package managers

More information

Package descriptr. March 20, 2018

Package descriptr. March 20, 2018 Type Package Package descriptr March 20, 2018 Title Generate Descriptive Statistics & Eplore Statistical Distributions Version 0.4.1 Generate descriptive statistics such as measures of location, dispersion,

More information

Package CuCubes. December 9, 2016

Package CuCubes. December 9, 2016 Package CuCubes December 9, 2016 Title MultiDimensional Feature Selection (MDFS) Version 0.1.0 URL https://featureselector.uco.uwb.edu.pl/pub/cucubes/ Functions for MultiDimensional Feature Selection (MDFS):

More information

Package ggimage. R topics documented: December 5, Title Use Image in 'ggplot2' Version 0.1.0

Package ggimage. R topics documented: December 5, Title Use Image in 'ggplot2' Version 0.1.0 Title Use Image in 'ggplot2' Version 0.1.0 Package ggimage December 5, 2017 Supports image files and graphic objects to be visualized in 'ggplot2' graphic system. Depends R (>= 3.3.0), ggplot2 Imports

More information

Package oec. R topics documented: May 11, Type Package

Package oec. R topics documented: May 11, Type Package Type Package Package oec May 11, 2018 Title Observatory of Economic Complexity API Wrapper and Utility Program Version 2.7.8 Date 2018-06-11 Maintainer Mauricio Vargas S. URL https://cran.r-project.org/package=oec

More information

Package CompGLM. April 29, 2018

Package CompGLM. April 29, 2018 Type Package Package CompGLM April 29, 2018 Title Conway-Maxwell-Poisson GLM and Distribution Functions Version 2.0 Date 2018-04-29 Author Jeffrey Pollock Maintainer URL https://github.com/jeffpollock9/compglm

More information

Package splitfeas. April 11, 2018

Package splitfeas. April 11, 2018 Title Multi-Set Split Feasibility Version 0.1.0 Package splitfeas April 11, 2018 An implementation of the majorization-minimization (MM) algorithm introduced by Xu, Chi, Yang, and Lange (2017)

More information

Package fitbitscraper

Package fitbitscraper Title Scrapes Data from Fitbit Version 0.1.8 Package fitbitscraper April 14, 2017 Author Cory Nissen [aut, cre] Maintainer Cory Nissen Scrapes data from Fitbit

More information

Package datasets.load

Package datasets.load Title Interface for Loading Datasets Version 0.1.0 Package datasets.load December 14, 2016 Visual interface for loading datasets in RStudio from insted (unloaded) s. Depends R (>= 3.0.0) Imports shiny,

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 crochet. January 8, 2018

Package crochet. January 8, 2018 Version 2.0.1 License MIT + file LICENSE Package crochet January 8, 2018 Title Implementation Helper for [ and [

More information

Package available. November 17, 2017

Package available. November 17, 2017 Package available November 17, 2017 Title Check if the Title of a Package is Available, Appropriate and Interesting Version 1.0.0 Check if a given package is available to use. It checks the 's validity.

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

Simulation Input Data Modeling

Simulation Input Data Modeling Introduction to Modeling and Simulation Simulation Input Data Modeling OSMAN BALCI Professor Department of Computer Science Virginia Polytechnic Institute and State University (Virginia Tech) Blacksburg,

More information

Package fusionclust. September 19, 2017

Package fusionclust. September 19, 2017 Package fusionclust September 19, 2017 Title Clustering and Feature Screening using L1 Fusion Penalty Version 1.0.0 Provides the Big Merge Tracker and COSCI algorithms for convex clustering and feature

More information

SSJ User s Guide. Package randvar Generating Non-Uniform Random Numbers

SSJ User s Guide. Package randvar Generating Non-Uniform Random Numbers SSJ User s Guide Package randvar Generating Non-Uniform Random Numbers Version: May 21, 2008 This package implements random number generators from various standard distributions. It also provides an interface

More information

Package mvpot. R topics documented: April 9, Type Package

Package mvpot. R topics documented: April 9, Type Package Type Package Package mvpot April 9, 2018 Title Multivariate Peaks-over-Threshold Modelling for Spatial Extreme Events Version 0.1.4 Date 2018-04-09 Tools for high-dimensional peaks-over-threshold inference

More information

Package dbx. July 5, 2018

Package dbx. July 5, 2018 Type Package Title A Fast, Easy-to-Use Database Interface Version 0.1.0 Date 2018-07-05 Package dbx July 5, 2018 Provides select, insert, update, upsert, and delete database operations. Supports 'PostgreSQL',

More information

Package ggimage. R topics documented: November 1, Title Use Image in 'ggplot2' Version 0.0.7

Package ggimage. R topics documented: November 1, Title Use Image in 'ggplot2' Version 0.0.7 Title Use Image in 'ggplot2' Version 0.0.7 Package ggimage November 1, 2017 Supports image files and graphic objects to be visualized in 'ggplot2' graphic system. Depends R (>= 3.3.0), ggplot2 Imports

More information

Package treedater. R topics documented: May 4, Type Package

Package treedater. R topics documented: May 4, Type Package Type Package Package treedater May 4, 2018 Title Fast Molecular Clock Dating of Phylogenetic Trees with Rate Variation Version 0.2.0 Date 2018-04-23 Author Erik Volz [aut, cre] Maintainer Erik Volz

More information

Package SteinerNet. August 19, 2018

Package SteinerNet. August 19, 2018 Type Package Version 3.0.1 Date 2018-08-18 Title Steiner Tree Approach for Graph Analysis Package SteinerNet August 19, 2018 A set of functions for finding and analysing Steiner trees. It has applications

More information

Bayesian Computation with JAGS

Bayesian Computation with JAGS JAGS is Just Another Gibbs Sampler Cross-platform Accessible from within R Bayesian Computation with JAGS What I did Downloaded and installed JAGS. In the R package installer, downloaded rjags and dependencies.

More information

Package messaging. May 27, 2018

Package messaging. May 27, 2018 Type Package Package messaging May 27, 2018 Title Conveniently Issue Messages, Warnings, and Errors Version 0.1.0 Description Provides tools for creating and issuing nicely-formatted text within R diagnostic

More information

Package robets. March 6, Type Package

Package robets. March 6, Type Package Type Package Package robets March 6, 2018 Title Forecasting Time Series with Robust Exponential Smoothing Version 1.4 Date 2018-03-06 We provide an outlier robust alternative of the function ets() in the

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 simed. November 27, 2017

Package simed. November 27, 2017 Version 1.0.3 Title Simulation Education Author Barry Lawson, Larry Leemis Package simed November 27, 2017 Maintainer Barry Lawson Imports graphics, grdevices, methods, stats, utils

More information

Package coga. May 8, 2018

Package coga. May 8, 2018 Title Convolution of Gamma Distributions Version 1.0.0 Date 2018-05-08 Package coga May 8, 2018 Evaluation for density and distribution function of convolution of gamma distributions in R. Two related

More information

Package gppm. July 5, 2018

Package gppm. July 5, 2018 Version 0.2.0 Title Gaussian Process Panel Modeling Package gppm July 5, 2018 Provides an implementation of Gaussian process panel modeling (GPPM). GPPM is described in Karch (2016; )

More information

Package SAM. March 12, 2019

Package SAM. March 12, 2019 Type Package Title Sparse Additive Modelling Version 1.1.1 Date 2019-02-18 Package SAM March 12, 2019 Author Haoming Jiang, Yukun Ma, Xinyu Fei, Tuo Zhao, Xingguo Li, Han Liu, and Kathryn Roeder Maintainer

More information

Package basictrendline

Package basictrendline Version 2.0.3 Date 2018-07-26 Package basictrendline July 26, 2018 Title Add Trendline and Confidence Interval of Basic Regression Models to Plot Maintainer Weiping Mei Plot, draw

More information

Package ThreeArmedTrials

Package ThreeArmedTrials Type Package Package ThreeArmedTrials August 29, 2016 Title Design and Analysis of Clinical Non-Inferiority or Superiority Trials with Active and Placebo Control Version 1.0-0 Date 2016-05-11 Author Tobias

More information

Package milr. June 8, 2017

Package milr. June 8, 2017 Type Package Package milr June 8, 2017 Title Multiple-Instance Logistic Regression with LASSO Penalty Version 0.3.0 Date 2017-06-05 The multiple instance data set consists of many independent subjects

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 docxtools. July 6, 2018

Package docxtools. July 6, 2018 Title Tools for R Markdown to Docx Documents Version 0.2.0 Language en-us Package docxtools July 6, 2018 A set of helper functions for using R Markdown to create documents in docx format, especially documents

More information

Package attrcusum. December 28, 2016

Package attrcusum. December 28, 2016 Type Package Package attrcusum December 28, 2016 Title Tools for Attribute VSI CUSUM Control Chart Version 0.1.0 An implementation of tools for design of attribute variable sampling interval cumulative

More information

Package crossrun. October 8, 2018

Package crossrun. October 8, 2018 Version 0.1.0 Package crossrun October 8, 2018 Title Joint Distribution of Number of Crossings and Longest Run Joint distribution of number of crossings and the longest run in a series of independent Bernoulli

More information

Package coenocliner. R topics documented: August 29, Type Package Title Coenocline Simulation Version Date

Package coenocliner. R topics documented: August 29, Type Package Title Coenocline Simulation Version Date Type Package Title Coenocline Simulation Version 0.2-2 Date 2016-05-17 Package coenocliner August 29, 2016 Maintainer Gavin L. Simpson Simulate species occurrence and abundances (counts)

More information

Package semver. January 6, 2017

Package semver. January 6, 2017 Type Package Title 'Semantic Versioning V2.0.0' Parser Version 0.2.0 Package semver January 6, 2017 Tools and functions for parsing, rendering and operating on semantic version strings. Semantic versioning

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

Package canvasxpress

Package canvasxpress Version 1.18.2 Package canvasxpress Title Visualization Package for CanvasXpress in R January 19, 2018 Enables creation of visualizations using the CanvasXpress framework in R. CanvasXpress is a standalone

More information

SAS (Statistical Analysis Software/System)

SAS (Statistical Analysis Software/System) SAS (Statistical Analysis Software/System) SAS Adv. Analytics or Predictive Modelling:- Class Room: Training Fee & Duration : 30K & 3 Months Online Training Fee & Duration : 33K & 3 Months Learning SAS:

More information

Package bisect. April 16, 2018

Package bisect. April 16, 2018 Package bisect April 16, 2018 Title Estimating Cell Type Composition from Methylation Sequencing Data Version 0.9.0 Maintainer Eyal Fisher Author Eyal Fisher [aut, cre] An implementation

More information

Package fcopulae. November 16, 2017

Package fcopulae. November 16, 2017 Package fcopulae November 16, 2017 Title Rmetrics - Bivariate Dependence Structures with Copulae Date 2017-11-12 Version 3042.82 Author Diethelm Wuertz [aut], Tobias Setz [cre], Yohan Chalabi [ctb] Maintainer

More information

Package RobustGaSP. R topics documented: September 11, Type Package

Package RobustGaSP. R topics documented: September 11, Type Package Type Package Package RobustGaSP September 11, 2018 Title Robust Gaussian Stochastic Process Emulation Version 0.5.6 Date/Publication 2018-09-11 08:10:03 UTC Maintainer Mengyang Gu Author

More information

Package mixdist. February 20, 2015

Package mixdist. February 20, 2015 Version 0.5-4 Date 2011-10-18 Title Finite Mixture Distribution Models Package mixdist February 20, 2015 Author Peter Macdonald , with contributions from Juan Du

More information

Package readobj. November 2, 2017

Package readobj. November 2, 2017 Type Package Package readobj November 2, 2017 Title Fast Reader for 'Wavefront' OBJ 3D Scene Files Version 0.3 Wraps 'tiny_obj_loader' C++ library for reading the 'Wavefront' OBJ 3D file format including

More information

Package spelling. December 18, 2017

Package spelling. December 18, 2017 Title Tools for Spell Checking in R Version 1.1 Package spelling December 18, 2017 Spell checking common document formats including latex, markdown, manual pages, and description files. Includes utilities

More information

Package gggenes. R topics documented: November 7, Title Draw Gene Arrow Maps in 'ggplot2' Version 0.3.2

Package gggenes. R topics documented: November 7, Title Draw Gene Arrow Maps in 'ggplot2' Version 0.3.2 Title Draw Gene Arrow Maps in 'ggplot2' Version 0.3.2 Package gggenes November 7, 2018 Provides a 'ggplot2' geom and helper functions for drawing gene arrow maps. Depends R (>= 3.3.0) Imports grid (>=

More information

Package mgc. April 13, 2018

Package mgc. April 13, 2018 Type Package Title Multiscale Graph Correlation Version 1.0.1 Date 2018-04-12 Package mgc April 13, 2018 Maintainer Multiscale Graph Correlation (MGC) is a framework developed by Shen

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

Bluman & Mayer, Elementary Statistics, A Step by Step Approach, Canadian Edition

Bluman & Mayer, Elementary Statistics, A Step by Step Approach, Canadian Edition Bluman & Mayer, Elementary Statistics, A Step by Step Approach, Canadian Edition Online Learning Centre Technology Step-by-Step - Minitab Minitab is a statistical software application originally created

More information

Package gamlss.spatial

Package gamlss.spatial Type Package Package gamlss.spatial May 24, 2018 Title Spatial Terms in Generalized Additive Models for Location Scale and Shape Models Version 2.0.0 Date 2018-05-24 Description It allows us to fit Gaussian

More information

Package ScottKnottESD

Package ScottKnottESD Type Package Package ScottKnottESD May 8, 2018 Title The Scott-Knott Effect Size Difference (ESD) Test Version 2.0.3 Date 2018-05-08 Author Chakkrit Tantithamthavorn Maintainer Chakkrit Tantithamthavorn

More information

Package SEMrushR. November 3, 2018

Package SEMrushR. November 3, 2018 Type Package Title R Interface to Access the 'SEMrush' API Version 0.1.0 Package SEMrushR November 3, 2018 Implements methods for querying SEO (Search Engine Optimization) and SEM (Search Engine Marketing)

More information

Package rdryad. June 18, 2018

Package rdryad. June 18, 2018 Type Package Title Access for Dryad Web Services Package rdryad June 18, 2018 Interface to the Dryad ``Solr'' API, their ``OAI-PMH'' service, and fetch datasets. Dryad () is a curated

More information

Package BivarP. April 18, 2015

Package BivarP. April 18, 2015 Type Package Package BivarP April 18, 2015 Title Estimating the Parameters of Some Bivariate Distributions Version 1.0 Date 2015-04-17 Author Maintainer Depends dfoptim, survival, copula

More information

Package nullabor. February 20, 2015

Package nullabor. February 20, 2015 Version 0.3.1 Package nullabor February 20, 2015 Tools for visual inference. Generate null data sets and null plots using permutation and simulation. Calculate distance metrics for a lineup, and examine

More information