Package equate. February 15, 2013

Size: px
Start display at page:

Download "Package equate. February 15, 2013"

Transcription

1 Package equate February 15, 2013 Version Date Title Statistical Methods for Test Score Equating Author Anthony Albano Maintainer Anthony Albano Depends R (>= ) The equate package contains functions for non-irt equating under both random groups and nonequivalent groups with anchor test designs. Mean, linear, equipercentile and circle-arc equating are supported, as are methods for univariate and bivariate presmoothing of score distributions. Specific equating methods currently supported include synthetic, nominal weights, Tucker, Levine observed score, Levine true score,braun/holland, frequency estimation, and chained equating. LazyLoad yes License GPL (>= 2) URL Repository CRAN Date/Publication :11:10 NeedsCompilation no R topics documented: equate-package ACTmath descriptives equate freqadjust

2 2 equate-package freqtab KBneat loglinear percentiles plot.freqtab se.boot Index 19 equate-package Statistical Methods for Test Score Equating Details The equate package contains functions for non-irt equating under both random groups and nonequivalent groups with anchor test designs. Mean, linear, equipercentile and circle-arc equating are supported, as are methods for univariate and bivariate presmoothing of score distributions. Specific equating methods currently supported include synthetic, nominal weights, Tucker, Levine observed score, Levine true score, Braun/Holland, frequency estimation, and chained equating. Package: equate Version: Date: Depends: R (>= ) License: GPL (>= 2) Index: ACTmath KBneat descript equate freqavg freqtab loglinear plot.freqtab px se.boot ACT Mathematics Test Scores Test Scores under a NEAT design Descriptive Statistics for a Frequency Table Statistical Equating Frequency Adjusting and Averaging Frequency Tabulation Loglinear Smoothing Plotting of Frequency Distributions Percentile Rank and Cumulative Distribution Functions Bootstrap Standard Errors of Equating Further information is available in the following vignettes: equatevignette equate vignette (source, pdf)

3 ACTmath 3 The package vignette provides an introduction to statistical equating and includes descriptions of the supported equating methods and examples. The help page for the main function of the package, equate, contains additional examples. Author(s) Anthony Albano <tony.d.albano@gmail.com> ACTmath ACT Mathematics Test Scores This dataset contains score distributions for two forms of the ACT mathematics test, as presented in table 2.5 of Test Equating, Scaling, and Linking (Kolen and Brennan, 2004; p. 50). ACTmath Format A 41 by 3 matrix containing the score scale, frequencies for form X, and frequencies for form Y Source Kolen, M. J., and Brennan, R. L. (2004) Test Equating, Scaling, and Linking. (2nd ed.), New York: Springer. The dataset is also provided with the equating software RAGE, available at the following link: descriptives Descriptive Statistics for a Frequency Table The functions mean.freqtab, sd.freqtab, skew.freqtab, and kurt.freqtab return the mean, standard deviation, skewness, and kurtosis for a frequency table of class freqtab. descript returns all four of these values along with the number of observations. min.freqtab and max.freqtab return the minimum and maximum. cov.freqtab returns the variance of a univariate frequency table and the covariance of a bivariate.

4 4 descriptives mean.freqtab(x,...) sd.freqtab(x) skew.freqtab(x) kurt.freqtab(x) descript(x) min.freqtab(x,..., na.rm = FALSE) max.freqtab(x,..., na.rm = FALSE) cov.freqtab(x) Arguments x two-column matrix of class freqtab, where column 1 specifies the score scale and column 2 the frequencies for each score point. If x is a three-column bivariate frequency table, only the first distribution is used, except with cov.freqtab (see examples)... further arguments passed to or from other methods na.rm logical indicating whether or not missing values should be removed Value descript returns a vector which includes the mean, standard deviation, skewness, kurtosis, and number of observations. Otherwise a vector of length one is returned. Author(s) Anthony Albano <tony.d.albano@gmail.com> See Also freqtab Examples xtab <- freqtab(actmath[, 1], ACTmath[, 2]) descript(xtab) mean(xtab) set.seed(2008) y <- round(rnorm(100, 100, 10)) ytab <- freqtab(70:130, y) min(y); min(ytab) max(y); max(ytab) cov.freqtab(ytab); var(y) yscale <- 0:36 vscale <- 0:12 ny <- freqtab(yscale, KBneat$y[, 1], vscale, KBneat$y[, 2]) cov.freqtab(ny); cov(kbneat$y[, 1], KBneat$y[, 2])

5 equate 5 equate Statistical Equating This function equates test scores under the random groups and nonequivalent groups with anchor test designs. equate(x, y, type, method = NA, name = NULL, ident = 0, bootse = FALSE,...) Arguments x, y score distributions of class freqtab for forms X and Y. These may be univariate or bivariate distributions (see below for details). Alternatively, if y is an object of class equate (the output of a previous equating) and x a vector of scores, the equating function from y is used to convert scores in x to the Y scale. type method name Details ident bootse the type of equating, as the string "mean", "linear", "equipercentile", "circle-arc", or abbreviations of these string specifying the equating method, where NA (default) indicates equating under the random groups design, and "nominal weights", "tucker", "levine", "frequency estimation", "braun/holland", and "chained" (or abbreviations of these) indicate the respective methods under the nonequivalent groups design An optional name, used to label the output value between 0 (default) and 1 specifying the proportional representation of the identity function in the equating function. logical indicating whether or not bootstrap standard errors of equating should be returned (default is FALSE)... further arguments passed to or from other methods (see below for details) For the random groups design x and y are separate frequency tables where each row contains a score scale point and the total number of examinees obtaining that score. For the nonequivalent groups design each row contains a score scale point on x or y, a score scale point on the anchor test, and the total number of examinees obtaining that score combination (see freqtab for details). When equating output is supplied for y, no other arguments are required and scores from x are converted directly to the scale indicated in y. In this case x must be a vector of scores. Four equating types are currently supported: mean, linear, and equipercentile, as described by Kolen and Brennan (2004), and circle-arc equating, as described by Livingston and Kim (2009). The equating design is implied by the method argument, where NA (default) indicates that no method is needed (because examinees taking forms X and Y are assumed to be equivalent). The nominal weights, Tucker, Levine observed score, Levine true score, frequency estimation, Braun/Holland,

6 6 equate Value and chained equating methods are supported for the nonequivalent groups with anchor test design. All but the Levine true score and chained method rely on a synthetic distribution of scores (Braun and Holland, 1982), a weighted combination of x and y. Depending on the equating method, the following additional arguments may be required: internal logical indicating whether or not the anchor item scores are included in the total scores. This applies only to the Levine method, as all other methods assume an internal anchor test. Default is TRUE Ky integer, typically indicating the number of items on form Y or the maximum possible score on Y (default). This value is used in equipercentile equating for the extremes of the scale (see below) smoothmeth string indicating one of four smoothing methods to be used in equipercentile equating: "none" (default), "bump", "average", and "loglin" (see below) w value between 0 and 1 specifying the weight applied to form X scores (and implicitly specifying the form Y weight as 1 - w) when estimating the synthetic population. When set to -1, proportional weights are calculated for X and Y based on sample size lts logical indicating whether or not to use levine true score (hence lts ) equating. Default is FALSE lowp, highp two vectors, each of length 2, recycled if necessary, specifying the coordinates for the low and high points used in circle-arc equating. lowp defaults to the minimums of the X and Y scales. highp defaults to the number of items, i.e., the maximum possible scores midp string used to specify the type of chained linear equating used to obtain the midpoint in circlearc equating, whether "mean" (default) or "linear" For equipercentile equating under the random groups design, three smoothing options are available: "bump" and "average" (see freqbump and freqavg) require the additional argument jmin, and loglinear smoothing ("loglin") requires the score functions xscorefun and yscorefun (see loglinear). For frequency estimation and chained methods, only smoothing methods "freqbump" and "loglin" are supported. The parameter Ky is used to obtain form Y equivalents of form X scores with percentile ranks of 100. Typically Ky is set to be the number of score points in the form Y scale, which assumes that scores are integers ranging from 1 (or 0) to the total number of items, and that each item is scored correct/incorrect. Scores on other scales (such as scales which include negative values, or which exclude zero) may also be used. In such cases Ky can be set to the highest possible score on form Y, or alternatively the highest observed score on Y. Specifying Ky = "maxobs" sets Ky to the maximum observed score on Y. This may be useful for calculating bootstrap standard errors, where Ky would depend on the particular bootstrap sample. Standard errors are returned for the random groups design only, using equations derived by Lord (1982, p. 168) for equipercentile equating and Braun and Holland (1982) for linear. Bootstrap standard errors are estimated using a default of reps=100 replications, sampling the maximum amount from each score distribution (controlled by the arguments xn and yn; see se.boot). An object of class equate is returned, listing the following components, some of which are conditional on the equating type, method, and smoothing:

7 equate 7 name type method design ident concordance bootsee yx stats freqtab coefficients points w anchorstats anchortab synthstats synthtab smoothmethod smoothout name or NULL if not specified equating type equating method equating design, inferred from the method weight given to identity function conversion table containing scores on X with their form Y equivalents. vector of bootstrap standard errors of equating Form Y equivalents for each score on X descriptive statistics for X, Y, and YX (equated scores) distributions table containing the score scale, cumulative distribution functions, frequencies, and smoothed frequencies for forms X and Y conversion coefficients intercept and slope. Center points of circle and radius are also included for circle-arc equating X and Y coordinates for low, middle, and high points used in circle-arc equating weight applied to X in synthetic estimation descriptive statistics for the anchor distributions frequency table for the anchor distributions means and standard deviations for the synthetic distributions frequency table for the synthetic distribution, used in frequency estimation equipercentile equating smoothing method Smoothed frequencies for X and Y Author(s) Anthony Albano <tony.d.albano@gmail.com> References Braun, H. I., and Holland, P. W. (1982). Observed-score test equating: A mathematical analysis of some ETS equating procedures. In P. W. Holland and D. B. Rubin (Eds.), Test Equating (pp. 9 49). New York: Academic. Kolen, M. J., and Brennan, R. L. (2004). Test Equating, Scaling, and Linking. (2nd ed.), New York: Springer. Livingston, S. A., and Kim, S. (2009). The circle-arc method for equating in small samples, Journal of Educational Measurement, 46, Lord, F. (1982). The standard error of equipercentile equating. Journal of Educational Statistics, 7, See Also freqbump, freqavg, loglinear, se.boot

8 8 freqadjust Examples # see vignette("equatevignette") for description of methods # and additional examples # random groups equating for (1) mean, (2) linear, # (3) equipercentile, and (4) equipercentile with # loglinear smoothing: rscale <- ACTmath[, 1] rx <- as.freqtab(rscale, ACTmath[, 2]) ry <- as.freqtab(rscale, ACTmath[, 3]) set.seed(2007) req1 <- equate(rx, ry, type = "m", bootse = TRUE, reps = 50) req2 <- equate(rx, ry, type = "l", bootse = TRUE, reps = 50) req3 <- equate(rx, ry, type = "e", bootse = TRUE, reps = 50) req4 <- equate(rx, ry, type = "e", bootse = TRUE, reps = 50, smooth = "loglin", degree = 3) # compare equated scores: cbind(rscale, mean = req1$conc[, 2], linear = req2$conc[, 2], equip = req3$conc[, 2], equips = req4$conc[, 2]) # compare boostrap standard errors: cbind(rscale, linear = req2$bootsee, equip = req3$bootsee, equips = req4$bootsee) # nonequivalent groups design for (1) Tucker linear, # (2) frequency estimation, and (3) Braun/Holland linear nscale <- 0:36 vscale <- 0:12 nx <- freqtab(nscale, KBneat$x[, 1], vscale, KBneat$x[, 2]) ny <- freqtab(nscale, KBneat$y[, 1], vscale, KBneat$y[, 2]) neq1 <- equate(nx, ny, type = "Linear", method = "Tuck", w = 1) neq2 <- equate(nx, ny, type = "equip", method = "freq", w = 1) neq3 <- equate(nx, ny, type = "linear", method = "braun", w = 1) # compare equated scores: cbind(nscale, Tucker = neq1$conc[, 2], FE = neq2$conc[, 2], Braun = neq3$conc[, 2]) freqadjust Frequency Adjusting and Averaging These functions provide simple methods for smoothing score distributions, typically ones with unobserved score points, prior to performing equipercentile equating. freqbump smooths by adding a small relative frequency to each score while adjusting the probabilities to sum to one (see Kolen

9 freqadjust 9 and Brennan, 2004, p. 48). freqavg replaces frequencies falling below a specified threshold with an average of adjacent values (see Moses and Holland, 2008). freqbump(x, jmin = 10^-6, Kx = max(x[,1])) freqavg(x, jmin = 1) Arguments x jmin Kx two-column matrix of class freqtab, where column 1 specifies the score scale and column 2 the frequencies for each score point. For freqbump, x can also be a bivariate frequency table. for freqbump, the frequency to be added to each score point (default is 10^-6) for freqavg, the minimum frequency, as an integer, below which frequencies will be replaced (default is 1) integer indicating the number of items in the scale Value Returns a vector of adjusted frequencies. For freqavg, if no values fall below jmin these will simply be the original frequencies. For freqbump, frequencies are in the form of probabilities, summing to 1. Author(s) Anthony Albano <tony.d.albano@gmail.com> References Kolen, M. J., and Brennan, R. L. (2004) Test Equating, Scaling, and Linking. (2nd ed.), New York: Springer. Moses, T., and Holland, P. W. (2008). Notes on a general framework for observed score equating (ETS Research Rep. No. RR-08-59). Princeton, NJ: ETS. See Also loglinear Examples set.seed(2005) x <- round(rnorm(1000, 100, 10)) xscale <- 70:130 xtab <- freqtab(xscale, x) xavg <- freqavg(xtab) xbump <- freqbump(xtab) cbind(xtab, avg = xavg, bump = round(xbump * sum(xtab[, 2]), 6))

10 10 freqtab freqtab Frequency Tabulation freqtab creates a frequency table for a vector, or vectors, of scores. as.freqtab converts to class freqtab freqtab(xscale, x, vscale, v) as.freqtab(xscale, x) Arguments xscale x vscale v the score scale for form X, as a vector vector of scores (one per examinee) on items in form X (see details for other options) the score scale for form V, as a vector vector of scores (one per examinee) for form X examinees on items in form V (i.e., the anchor test) Details If x is a vector of scores, one per examinee, values are factored with levels = xscale. This ensures that unobtained scores (i.e., scores not in x) will still be represented in the tabulation. If x is a two-column matrix, as.freqtab serves to simply change its class to freqtab, as required by equate. In this case the first column should contain the score scale and the second column the number of examinees obtaining each score. Alternatively, both xscale and x can be included in as.freqtab, with the same result. Value In the univariate case (i.e., form V is not specified) a two-column matrix is returned, where column 1 contains the score scale and column 2 the frequency for each scale value. In the bivariate case a three-column matrix is returned where columns 1 and 2 contain all combinations of form X score scale points (in column 1) and score scale points on the anchor test (in column 2), and column 3 contains the total number of examinees obtaining the corresponding score combination. Author(s) Anthony Albano <tony.d.albano@gmail.com> See Also table

11 KBneat 11 Examples set.seed(2005) x1 <- round(rnorm(1000, 100, 10)) x1scale <- 70:130 freqtab(x1scale, x1) x2 <- ACTmath[, 2] x2scale <- ACTmath[, 1] as.freqtab(x2scale, x2) xscale <- 0:36 vscale <- 0:12 freqtab(xscale, KBneat$x[, 1], vscale, KBneat$x[, 2]) KBneat Test Scores under a NEAT design This dataset contains scores for two forms of a 36-item test administered under a nonequivalent groups with anchor test design. The anchor test is internal and consists of twelve items taken by both groups of examinees. The data is distributed as part of the equating software CIPE (see link below), and additional examples using this dataset are presented in Test Equating, Scaling, and Linking (Kolen and Brennan, 2004). KBneat Format A list of length two, where each element ($x and $y) contains two columns of data, one for the total score and another for the anchor test score for each examinee. Source Kolen, M. J., & Brennan, R. L. (2004) Test Equating, Scaling, and Linking. (2nd ed.), New York: Springer. The dataset can be downloaded as part of the CIPE software, available at the following link: http: //

12 12 loglinear loglinear Loglinear Smoothing This function smooths univariate and bivariate score distributions via polynomial loglinear modeling (Holland & Thayer, 2000; Moses & von Davier, 2006). loglinear(x, scorefun, degree, raw = TRUE, convergecrit =.0001, verbose = TRUE,...) Arguments x scorefun degree raw Details score distribution of class freqtab. Under the random groups design (i.e., no anchor test) x will contain the score scale in column 1, and the number of examinees obtaining each score in column 2. For the nonequivalent groups design a bivariate frequency table is used, where columns 1 and 2 include all score combinations for the total and anchor test score scales, and column 3 contains the number of examinees obtaining each combination (see freqtab for details) matrix of score functions, where each column represents a transformation of the score scale (or the crossed score scales, in the bivariate case) integer indicating a maximum polynomial transformation to be computed (passed to poly; ignored if scorefun is provided) logical. If TRUE (default), raw polynomials will be used, if FALSE, orthogonal (passed to poly) convergecrit convergence criteria used in maximum likelihood estimation (default is.0001) verbose logical, with default TRUE, indicating whether or not output in addition to the fitted values should be returned... further arguments passed to or from other methods Loglinear smoothing is a flexible procedure for reducing irregularities in a raw score distribution. The loglinear function fits a polynomial loglinear model to a distribution of scores, where the degree of each polynomial term determines the specific moment of the raw distribution that is preserved in the fitted distribution (see below for examples). scorefun must contain at least one score function of the scale score values. While there is no explicit limit on the number of columns in scorefun, models with more than ten may not converge on a solution. Specifying degree is an alternative to scorefun. It takes a maximum polynomial degree and constructs the score functions accordingly. For example, degree=3 will result in a model with three terms: the score scale raised to the first, second, and third powers. In the bivariate case powers 1 through 3 would be included for each variable. Maximum likelihood estimates are obtained using a Newton-Raphson algorithm, with slightly smoothed frequencies (all nonzero) as the basis for starting values. Calculating standard errors

13 loglinear 13 for these estimates requires matrix inversion, which for complex models may not be possible. In this case the standard errors will be omitted. The tolerance level for detecting singularity may be modified with the argument tol, which is passed to solve(). For a detailed description of the estimation procedures, including examples, see Holland and Thayer, 1987 and For a more recent discussion, including the macro after which the loglinear function is modeled, see Moses and von Davier, Value Returns a list including the following components: modelfit rawbetas alpha iterations fitted.values residuals cmatrix scorefun table of model fit statistics: likelihood ratio chi-square, Pearson chi-square, Freeman-Tukey chi-square, AIC, and CAIC two-column matrix of raw maximum likelihood estimates for the beta coefficients and corresponding standard errors normalizing constant number of iterations reached before convergence vector of estimated frequencies vector of residuals the C matrix, a factorization of the covariance matrix of the fitted values matrix of score functions Author(s) Anthony Albano <tony.d.albano@gmail.com> References Holland, P. W., and Thayer, D. T. (1987). Notes on the use of log-linear models for fitting discrete probability distributions (PSR Technical Rep. No ; ETS RR-87-31). Princeton, NJ: ETS. Holland, P. W., and Thayer, D. T. (2000). Univariate and bivariate loglinear models for discrete test score distributions. Journal of Educational and Behavioral Statistics, 25, Moses, T. P., and von Davier, A. A. (2006). A SAS macro for loglinear smoothing: Applications and implications (ETS Research Rep. No. RR-06-05). Princeton, NJ: ETS. Wang, T. (2009). Standard errors of equating for the percentile rank-based equipercentile equating with log-linear presmoothing. Journal of Educational and Behavioral Statistics, 34, See Also glm, loglin

14 14 loglinear Examples set.seed(2010) x <- round(rnorm(1000, 100, 15)) xscale <- 50:150 # smooth x preserving first 3 moments: xtab <- freqtab(xscale, x) xlog1 <- loglinear(xtab, degree = 3) plot(xtab, cbind(xscale, xlog1$fit), col1 = 2, col2 = 4) # add "teeth" and "gaps" to x: teeth <- c(.5, rep(c(1, 1, 1, 1,.5), 20)) xt <- xtab[, 2] * teeth cbind(xtab, xt) xttab <- as.freqtab(xscale, xt) xlog2 <- loglinear(xttab, degree = 3) cbind(xscale, xt, xlog2$fit) # smooth xt using score functions that preserve # the teeth structure (also 3 moments): teeth2 <- c(1, rep(c(0, 0, 0, 0, 1), 20)) xt.fun <- cbind(xscale, xscale^2, xscale^3) xt.fun <- cbind(xt.fun, xt.fun * teeth2) xlog3 <- loglinear(xttab, xt.fun) cbind(xscale, xt, xlog3$fit) par(mfrow = c(2, 1)) plot(xscale, xt, type = "h", ylab = "count", main = "X teeth raw") plot(xscale, xlog3$fit, type = "h", ylab = "count", main = "X teeth smooth") # bivariate example, preserving first 3 moments of total # and v (anchor) each of x and y, and the covariance # between anchor and total # see equated scores in Wang (2009), Table 4 xscale <- 0:36 vscale <- 0:12 xvtab <- freqtab(xscale, KBneat$x[, 1], vscale, KBneat$x[, 2]) yvtab <- freqtab(xscale, KBneat$y[, 1], vscale, KBneat$y[, 2]) Y <- yvtab[, 1] V <- yvtab[, 2] scorefun <- cbind(y, Y^2, Y^3, V, V^2, V^3, V * Y) wang09 <- equate(xvtab, yvtab, type = "equip", method = "chained", smooth = "loglin", xscorefun = scorefun, yscorefun = scorefun) wang09$concordance # replicate Moses and von Davier, 2006, univariate example: uv <- c(0, 4, 11, 16, 18, 34, 63, 89, 87, 129, 124,

15 percentiles , 125, 131, 109, 98, 89, 66, 54, 37, 17) loglinear(as.freqtab(0:20, uv), degree = 3) percentiles Percentile Rank and Cumulative Distribution Functions px returns the percentile ranks and fx the cumulative frequencies for each score point in a frequency distribution. px(x,y) fx(x) Arguments x y two-column matrix of class freqtab, where column 1 specifies the score scale and column 2 the frequencies for each score point. For px, x can also be a vector of score points (see details) optional frequency distribution of class freqtab (see details) Details px can be used to find the percentile ranks for a distribution of scores. When x is a frequency table and y is missing, the X distribution is used. If a frequency table is supplied for y, the percentile ranks are found for each score from x in the Y distribution. In this latter case x can either be a frequency table or simply a vector of scores. Value px returns a vector of percentile ranks, and fx a vector of cumulative frequencies. Author(s) Anthony Albano <tony.d.albano@gmail.com> Examples x <- freqtab(0:40, ACTmath[, 2]) px(x) fx(x) px(c(8.2, 40, 41), x)

16 16 plot.freqtab plot.freqtab Plotting of Frequency Distributions This function plots univariate and bivariate frequency tables of class freqtab plot.freqtab(x, y, col1 = "gray27", col2 = "gray74", pch=16, yoffset = 0.3,...) Arguments x y col1 col2 pch Details Value yoffset univariate or bivariate score distribution of class freqtab univariate score distribution, also of class freqtab, to be added to the plot of univariate x (see details) color of lines used in plotting univarite x, and in plotting both variables in bivariate x color of lines used in plotting y plotting point (see par) used in bivariate scatterplot integer indicating amount of offset, in terms of x scale points, when plotting lines for y... further arguments passed to or from other methods, such as graphical parameters besides col When x is bivariate y is ignored. Otherwise x and y are (currently) assumed to be on the same scale, which determines the x-axis. Colors must be specified using col1 and col2 The univariate option produces a single, simple, line plot of type="h". The bivariate option produces a scatterplot with a marginal barplot for each distribution. Author(s) Anthony Albano <tony.d.albano@gmail.com> See Also plot.table, lines

17 se.boot 17 Examples xscale <- 0:36 vscale <- 0:12 neat.xv <- freqtab(xscale, KBneat$x[, 1], vscale, KBneat$x[, 2]) plot(neat.xv) neat.x <- freqtab(xscale, KBneat$x[, 1]) neat.v <- freqtab(vscale, KBneat$x[, 2]) plot(neat.x, neat.v, lwd = 2) se.boot Bootstrap Standard Errors of Equating This function returns the standard deviation of equated scores over multiple replications of a specified equating. se.boot(x, y, xn = sum(x[,ncol(x)]), yn = sum(y[,ncol(y)]), reps = 100, eqfun, returnboots = FALSE,...) Arguments x, y score distributions of class freqtab for forms X and Y. These may be univariate or bivariate distributions, as required by equate xn, yn reps Details Value eqfun returnboots integers specifying the number of scores to sample from each distribution at each replication (default is the total number of scores in each) number of replications string indicating the equating function logical (default is FALSE) indicating whether or not the matrix of equated scores should be returned... further arguments passed to or from other methods Samples are drawn of size xn and yn, with replacement, from each score distribution. Form Y equivalents of each form X score are then obtained using the specified equating function eqfun. This process is repeated reps times. This function is most easily called from equate. Returns either a vector of standard deviations, one per score scale point, or a matrix of equated scores with number of columns equal to reps

18 18 se.boot Author(s) Anthony Albano Examples xtab <- freqtab(0:36, KBneat$x[, 1]) ytab <- freqtab(0:36, KBneat$y[, 1]) se.boot(xtab, ytab, reps = 100, eqfun = "equate.ln")

19 Index Topic datasets ACTmath, 3 KBneat, 11 Topic distribution percentiles, 15 Topic methods equate, 5 se.boot, 17 Topic misc plot.freqtab, 16 Topic package equate-package, 2 Topic smooth freqadjust, 8 loglinear, 12 Topic univar descriptives, 3 Topic utilities freqtab, 10 ACTmath, 3 as.freqtab (freqtab), 10 cov.freqtab (descriptives), 3 descript (descriptives), 3 descriptives, 3 KBneat, 11 kurt.freqtab (descriptives), 3 lines, 16 loglin, 13 loglinear, 6, 7, 9, 12 max.freqtab (descriptives), 3 mean.freqtab (descriptives), 3 min.freqtab (descriptives), 3 par, 16 percentiles, 15 plot.freqtab, 16 plot.table, 16 poly, 12 print.equate (equate), 5 px (percentiles), 15 sd.freqtab (descriptives), 3 se.boot, 6, 7, 17 se.eq (equate), 5 se.ln (equate), 5 skew.freqtab (descriptives), 3 synthetic (equate), 5 table, 10 equate, 3, 5, 5, 6, 10, 17 equate-package, 2 equipercentile (equate), 5 freqadjust, 8 freqavg, 6, 7 freqavg (freqadjust), 8 freqbump, 6, 7 freqbump (freqadjust), 8 freqtab, 3 5, 9, 10, 12, fx (percentiles), 15 glm, 13 19

Statistical Equating Methods

Statistical Equating Methods Statistical Equating Methods Anthony Albano January 7, 2011 Abstract The R package equate (Albano, 2011) contains functions for non-irt equating under random groups and nonequivalent groups designs. This

More information

equate: An R Package for Observed-Score Linking and Equating

equate: An R Package for Observed-Score Linking and Equating equate: An R Package for Observed-Score Linking and Equating Anthony D. Albano University of Nebraska-Lincoln Abstract The R package equate (Albano 2016) contains functions for observed-score linking and

More information

equate: An R Package for Observed-Score Linking and Equating

equate: An R Package for Observed-Score Linking and Equating equate: An R Package for Observed-Score Linking and Equating Anthony D. Albano University of Nebraska-Lincoln Abstract The R package equate (Albano 2014) contains functions for observed-score linking and

More information

Research on Standard Errors of Equating Differences

Research on Standard Errors of Equating Differences Research Report Research on Standard Errors of Equating Differences Tim Moses Wenmin Zhang November 2010 ETS RR-10-25 Listening. Learning. Leading. Research on Standard Errors of Equating Differences Tim

More information

A Comparison of Bivariate Smoothing Methods in Common-Item Equipercentile Equating

A Comparison of Bivariate Smoothing Methods in Common-Item Equipercentile Equating A Comparison of Bivariate Smoothing Methods in Common-Item Equipercentile Equating Bradley A. Hanson American College Testing The effectiveness of smoothing the bivariate distributions of common and noncommon

More information

Testing the Untestable Assumptions of the Chain and Poststratification Equating Methods for the NEAT Design

Testing the Untestable Assumptions of the Chain and Poststratification Equating Methods for the NEAT Design Research Report Testing the Untestable Assumptions of the Chain and Poststratification Equating Methods for the NEAT Design Paul W. Holland Alina A. von Davier Sandip Sinharay Ning Han Research & Development

More information

A Quadratic Curve Equating Method to Equate the First Three Moments in Equipercentile Equating

A Quadratic Curve Equating Method to Equate the First Three Moments in Equipercentile Equating A Quadratic Curve Equating Method to Equate the First Three Moments in Equipercentile Equating Tianyou Wang and Michael J. Kolen American College Testing A quadratic curve test equating method for equating

More information

Haiwen (Henry) Chen and Paul Holland 1 ETS, Princeton, New Jersey

Haiwen (Henry) Chen and Paul Holland 1 ETS, Princeton, New Jersey Research Report Construction of Chained True Score Equipercentile Equatings Under the Kernel Equating (KE) Framework and Their Relationship to Levine True Score Equating Haiwen (Henry) Chen Paul Holland

More information

Choice of Anchor Test in Equating

Choice of Anchor Test in Equating Research Report Choice of Anchor Test in Equating Sandip Sinharay Paul Holland Research & Development November 2006 RR-06-35 Choice of Anchor Test in Equating Sandip Sinharay and Paul Holland ETS, Princeton,

More information

Package gtheory. October 30, 2016

Package gtheory. October 30, 2016 Package gtheory October 30, 2016 Version 0.1.2 Date 2016-10-22 Title Apply Generalizability Theory with R Depends lme4 Estimates variance components, generalizability coefficients, universe scores, and

More information

Equating of Subscores and Weighted Averages Under the NEAT Design

Equating of Subscores and Weighted Averages Under the NEAT Design Research Report ETS RR 11-01 Equating of Subscores and Weighted Averages Under the NEAT Design Sandip Sinharay Shelby Haberman January 2011 Equating of Subscores and Weighted Averages Under the NEAT Design

More information

Chained Versus Post-Stratification Equating in a Linear Context: An Evaluation Using Empirical Data

Chained Versus Post-Stratification Equating in a Linear Context: An Evaluation Using Empirical Data Research Report Chained Versus Post-Stratification Equating in a Linear Context: An Evaluation Using Empirical Data Gautam Puhan February 2 ETS RR--6 Listening. Learning. Leading. Chained Versus Post-Stratification

More information

Effectiveness of the hybrid Levine equipercentile and modified frequency estimation equating methods under the common-item nonequivalent groups design

Effectiveness of the hybrid Levine equipercentile and modified frequency estimation equating methods under the common-item nonequivalent groups design University of Iowa Iowa Research Online Theses and Dissertations 27 Effectiveness of the hybrid Levine equipercentile and modified frequency estimation equating methods under the common-item nonequivalent

More information

Package rnmf. February 20, 2015

Package rnmf. February 20, 2015 Type Package Title Robust Nonnegative Matrix Factorization Package rnmf February 20, 2015 An implementation of robust nonnegative matrix factorization (rnmf). The rnmf algorithm decomposes a nonnegative

More information

Package msir. R topics documented: April 7, Type Package Version Date Title Model-Based Sliced Inverse Regression

Package msir. R topics documented: April 7, Type Package Version Date Title Model-Based Sliced Inverse Regression Type Package Version 1.3.1 Date 2016-04-07 Title Model-Based Sliced Inverse Regression Package April 7, 2016 An R package for dimension reduction based on finite Gaussian mixture modeling of inverse regression.

More information

Package pearson7. June 22, 2016

Package pearson7. June 22, 2016 Version 1.0-2 Date 2016-06-21 Package pearson7 June 22, 2016 Title Maximum Likelihood Inference for the Pearson VII Distribution with Shape Parameter 3/2 Author John Hughes Maintainer John Hughes

More information

Package leiv. R topics documented: February 20, Version Type Package

Package leiv. R topics documented: February 20, Version Type Package Version 2.0-7 Type Package Package leiv February 20, 2015 Title Bivariate Linear Errors-In-Variables Estimation Date 2015-01-11 Maintainer David Leonard Depends R (>= 2.9.0)

More information

Center for Advanced Studies in Measurement and Assessment. CASMA Research Report

Center for Advanced Studies in Measurement and Assessment. CASMA Research Report Center for Advanced Studies in Measurement and Assessment CASMA Research Report Number 37 Effects of the Number of Common Items on Equating Precision and Estimates of the Lower Bound to the Number of Common

More information

Package depth.plot. December 20, 2015

Package depth.plot. December 20, 2015 Package depth.plot December 20, 2015 Type Package Title Multivariate Analogy of Quantiles Version 0.1 Date 2015-12-19 Maintainer Could be used to obtain spatial depths, spatial ranks and outliers of multivariate

More information

Package sklarsomega. May 24, 2018

Package sklarsomega. May 24, 2018 Type Package Package sklarsomega May 24, 2018 Title Measuring Agreement Using Sklar's Omega Coefficient Version 1.0 Date 2018-05-22 Author John Hughes Maintainer John Hughes

More information

Package esaddle. R topics documented: January 9, 2017

Package esaddle. R topics documented: January 9, 2017 Package esaddle January 9, 2017 Type Package Title Extended Empirical Saddlepoint Density Approximation Version 0.0.3 Date 2017-01-07 Author Matteo Fasiolo and Simon Wood Maintainer Matteo Fasiolo

More information

A Unified Approach to Linear Equating for the Non-Equivalent Groups Design

A Unified Approach to Linear Equating for the Non-Equivalent Groups Design Research Report A Unified Approach to Linear Equating for the Non-Equivalent Groups Design Alina A. von Davier Nan Kong Research & Development November 003 RR-03-31 A Unified Approach to Linear Equating

More information

Package darts. February 19, 2015

Package darts. February 19, 2015 Type Package Package darts February 19, 2015 Title Statistical Tools to Analyze Your Darts Game Version 1.0 Date 2011-01-17 Author Maintainer Are you aiming at the right spot in darts?

More information

Package rela. R topics documented: February 20, Version 4.1 Date Title Item Analysis Package with Standard Errors

Package rela. R topics documented: February 20, Version 4.1 Date Title Item Analysis Package with Standard Errors Version 4.1 Date 2009-10-25 Title Item Analysis Package with Standard Errors Package rela February 20, 2015 Author Michael Chajewski Maintainer Michael Chajewski

More information

Chapter 1 A Statistical Perspective on Equating Test Scores

Chapter 1 A Statistical Perspective on Equating Test Scores Chapter 1 A Statistical Perspective on Equating Test Scores Alina A. von Davier The fact that statistical methods of inference play so slight a role... reflect[s] the lack of influence modern statistical

More information

GODFREY, KELLY ELIZABETH, Ph.D. A Comparison of Kernel Equating and IRT True Score Equating Methods. (2007) Directed by Dr. Terry A. Ackerman. 181 pp.

GODFREY, KELLY ELIZABETH, Ph.D. A Comparison of Kernel Equating and IRT True Score Equating Methods. (2007) Directed by Dr. Terry A. Ackerman. 181 pp. GODFREY, KELLY ELIZABETH, Ph.D. A Comparison of Kernel Equating and IRT True Score Equating Methods. (7) Directed by Dr. Terry A. Ackerman. 8 pp. This two-part study investigates ) the impact of loglinear

More information

Package mlmmm. February 20, 2015

Package mlmmm. February 20, 2015 Package mlmmm February 20, 2015 Version 0.3-1.2 Date 2010-07-07 Title ML estimation under multivariate linear mixed models with missing values Author Recai Yucel . Maintainer Recai Yucel

More information

Package ForwardSearch

Package ForwardSearch Package ForwardSearch February 19, 2015 Type Package Title Forward Search using asymptotic theory Version 1.0 Date 2014-09-10 Author Bent Nielsen Maintainer Bent Nielsen

More information

Package locfdr. July 15, Index 5

Package locfdr. July 15, Index 5 Version 1.1-8 Title Computes Local False Discovery Rates Package locfdr July 15, 2015 Maintainer Balasubramanian Narasimhan License GPL-2 Imports stats, splines, graphics Computation

More information

Package SEMModComp. R topics documented: February 19, Type Package Title Model Comparisons for SEM Version 1.0 Date Author Roy Levy

Package SEMModComp. R topics documented: February 19, Type Package Title Model Comparisons for SEM Version 1.0 Date Author Roy Levy Type Package Title Model Comparisons for SEM Version 1.0 Date 2009-02-23 Author Roy Levy Package SEMModComp Maintainer Roy Levy February 19, 2015 Conduct tests of difference in fit for

More information

Package sbgcop. May 29, 2018

Package sbgcop. May 29, 2018 Package sbgcop May 29, 2018 Title Semiparametric Bayesian Gaussian Copula Estimation and Imputation Version 0.980 Date 2018-05-25 Author Maintainer Estimation and inference for parameters

More information

Package ShrinkCovMat

Package ShrinkCovMat Type Package Package ShrinkCovMat Title Shrinkage Covariance Matrix Estimators Version 1.2.0 Author July 11, 2017 Maintainer Provides nonparametric Steinian shrinkage estimators

More information

Package BayesNI. February 19, 2015

Package BayesNI. February 19, 2015 Package BayesNI February 19, 2015 Type Package Title BayesNI: Bayesian Testing Procedure for Noninferiority with Binary Endpoints Version 0.1 Date 2011-11-11 Author Sujit K Ghosh, Muhtarjan Osman Maintainer

More information

Effect of Repeaters on Score Equating in a Large Scale Licensure Test. Sooyeon Kim Michael E. Walker ETS, Princeton, NJ

Effect of Repeaters on Score Equating in a Large Scale Licensure Test. Sooyeon Kim Michael E. Walker ETS, Princeton, NJ Effect of Repeaters on Score Equating in a Large Scale Licensure Test Sooyeon Kim Michael E. Walker ETS, Princeton, NJ Paper presented at the annual meeting of the American Educational Research Association

More information

Package reinforcedpred

Package reinforcedpred Type Package Package reinforcedpred October 31, 2018 Title Reinforced Risk Prediction with Budget Constraint Version 0.1.1 Author Yinghao Pan [aut, cre], Yingqi Zhao [aut], Eric Laber [aut] Maintainer

More information

Package bivariate. December 10, 2018

Package bivariate. December 10, 2018 Title Bivariate Probability Distributions Version 0.3.0 Date 2018-12-10 License GPL (>= 2) Package bivariate December 10, 2018 Maintainer Abby Spurdle Author Abby Spurdle URL https://sites.google.com/site/asrpws

More information

Package flexcwm. R topics documented: July 2, Type Package. Title Flexible Cluster-Weighted Modeling. Version 1.1.

Package flexcwm. R topics documented: July 2, Type Package. Title Flexible Cluster-Weighted Modeling. Version 1.1. Package flexcwm July 2, 2014 Type Package Title Flexible Cluster-Weighted Modeling Version 1.1 Date 2013-11-03 Author Mazza A., Punzo A., Ingrassia S. Maintainer Angelo Mazza Description

More information

Package gk. R topics documented: February 4, Type Package Title g-and-k and g-and-h Distribution Functions Version 0.5.

Package gk. R topics documented: February 4, Type Package Title g-and-k and g-and-h Distribution Functions Version 0.5. Type Package Title g-and-k and g-and-h Distribution Functions Version 0.5.1 Date 2018-02-04 Package gk February 4, 2018 Functions for the g-and-k and generalised g-and-h distributions. License GPL-2 Imports

More information

Package SimCorMultRes

Package SimCorMultRes Type Package Package SimCorMultRes Title Simulates Correlated Multinomial Responses July 10, 2018 Description Simulates correlated multinomial responses conditional on a marginal model specification. Version

More information

SESUG 2011 ABSTRACT INTRODUCTION BACKGROUND ON LOGLINEAR SMOOTHING DESCRIPTION OF AN EXAMPLE. Paper CC-01

SESUG 2011 ABSTRACT INTRODUCTION BACKGROUND ON LOGLINEAR SMOOTHING DESCRIPTION OF AN EXAMPLE. Paper CC-01 Paper CC-01 Smoothing Scaled Score Distributions from a Standardized Test using PROC GENMOD Jonathan Steinberg, Educational Testing Service, Princeton, NJ Tim Moses, Educational Testing Service, Princeton,

More information

Package bmem. February 15, 2013

Package bmem. February 15, 2013 Package bmem February 15, 2013 Type Package Title Mediation analysis with missing data using bootstrap Version 1.3 Date 2011-01-04 Author Maintainer Zhiyong Zhang Depends R (>= 1.7),

More information

Package flexcwm. R topics documented: July 11, Type Package. Title Flexible Cluster-Weighted Modeling. Version 1.0.

Package flexcwm. R topics documented: July 11, Type Package. Title Flexible Cluster-Weighted Modeling. Version 1.0. Package flexcwm July 11, 2013 Type Package Title Flexible Cluster-Weighted Modeling Version 1.0 Date 2013-02-17 Author Incarbone G., Mazza A., Punzo A., Ingrassia S. Maintainer Angelo Mazza

More information

Glossary. The ISI glossary of statistical terms provides definitions in a number of different languages:

Glossary. The ISI glossary of statistical terms provides definitions in a number of different languages: Glossary The ISI glossary of statistical terms provides definitions in a number of different languages: http://isi.cbs.nl/glossary/index.htm Adjusted r 2 Adjusted R squared measures the proportion of the

More information

Package CorrMixed. R topics documented: August 4, Type Package

Package CorrMixed. R topics documented: August 4, Type Package Type Package Package CorrMixed August 4, 2016 Title Estimate Correlations Between Repeatedly Measured Endpoints (E.g., Reliability) Based on Linear Mixed-Effects Models Version 0.1-13 Date 2015-03-08 Author

More information

Center for Advanced Studies in Measurement and Assessment. CASMA Research Report

Center for Advanced Studies in Measurement and Assessment. CASMA Research Report Center for Advanced Studies in Measurement and Assessment CASMA Research Report Number 31 Assessing Equating Results Based on First-order and Second-order Equity Eunjung Lee, Won-Chan Lee, Robert L. Brennan

More information

Package MultisiteMediation

Package MultisiteMediation Version 0.0.1 Date 2017-02-25 Package MultisiteMediation February 26, 2017 Title Causal Mediation Analysis in Multisite Trials Author Xu Qin, Guanglei Hong Maintainer Xu Qin Depends

More information

Package misctools. November 25, 2016

Package misctools. November 25, 2016 Version 0.6-22 Date 2016-11-25 Title Miscellaneous Tools and Utilities Author, Ott Toomet Package misctools November 25, 2016 Maintainer Depends R (>= 2.14.0) Suggests Ecdat

More information

Package AID. R topics documented: November 10, Type Package Title Box-Cox Power Transformation Version 2.3 Date Depends R (>= 2.15.

Package AID. R topics documented: November 10, Type Package Title Box-Cox Power Transformation Version 2.3 Date Depends R (>= 2.15. Type Package Title Box-Cox Power Transformation Version 2.3 Date 2017-11-10 Depends R (>= 2.15.0) Package AID November 10, 2017 Imports MASS, tseries, nortest, ggplot2, graphics, psych, stats Author Osman

More information

Package IsingSampler

Package IsingSampler Type Package Package IsingSampler March 2, 2015 Title Sampling Methods and Distribution Functions for the Ising Model Version 0.2 Date 2015-03-01 Author Sacha Epskamp Maintainer Sacha Epskamp

More information

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

Package ebal. R topics documented: February 19, Type Package Type Package Package ebal February 19, 2015 Title Entropy reweighting to create balanced samples Version 0.1-6 Date 2014-01-25 Author Maintainer Package implements entropy balancing,

More information

Package RootsExtremaInflections

Package RootsExtremaInflections Type Package Package RootsExtremaInflections May 10, 2017 Title Finds Roots, Extrema and Inflection Points of a Curve Version 1.1 Date 2017-05-10 Author Demetris T. Christopoulos Maintainer Demetris T.

More information

The evdbayes Package

The evdbayes Package The evdbayes Package April 19, 2006 Version 1.0-5 Date 2006-18-04 Title Bayesian Analysis in Extreme Theory Author Alec Stephenson and Mathieu Ribatet. Maintainer Mathieu Ribatet

More information

Package rbvs. R topics documented: August 29, Type Package Title Ranking-Based Variable Selection Version 1.0.

Package rbvs. R topics documented: August 29, Type Package Title Ranking-Based Variable Selection Version 1.0. Type Package Title Ranking-Based Variable Selection Version 1.0.2 Date 2015-12-08 Package rbvs August 29, 2016 Author Rafal Baranowski, Patrick Breheny, Isaac Turner Maintainer Rafal Baranowski

More information

Package clogitboost. R topics documented: December 21, 2015

Package clogitboost. R topics documented: December 21, 2015 Package December 21, 2015 Type Package Title Boosting Conditional Logit Model Version 1.1 Date 2015-12-09 Author Haolun Shi and Guosheng Yin Maintainer A set of functions to fit a boosting conditional

More information

Package NonpModelCheck

Package NonpModelCheck Type Package Package NonpModelCheck April 27, 2017 Title Model Checking and Variable Selection in Nonparametric Regression Version 3.0 Date 2017-04-27 Author Adriano Zanin Zambom Maintainer Adriano Zanin

More information

Package equateirt. June 8, 2018

Package equateirt. June 8, 2018 Type Package Title IRT Equating Methods Imports statmod, stats, utils, mirt Suggests knitr, ltm, rmarkdown, sna Version 2.0-5 Author Package equateirt June 8, 2018 Maintainer

More information

Package CEC. R topics documented: August 29, Title Cross-Entropy Clustering Version Date

Package CEC. R topics documented: August 29, Title Cross-Entropy Clustering Version Date Title Cross-Entropy Clustering Version 0.9.4 Date 2016-04-23 Package CEC August 29, 2016 Author Konrad Kamieniecki [aut, cre], Przemyslaw Spurek [ctb] Maintainer Konrad Kamieniecki

More information

Package ExtremeBounds

Package ExtremeBounds Type Package Title Extreme Bounds Analysis (EBA) Version 0.1.6 Date 2018-01-03 Package ExtremeBounds January 3, 2018 Author Marek Hlavac Maintainer Marek Hlavac

More information

Package monmlp. R topics documented: December 5, Type Package

Package monmlp. R topics documented: December 5, Type Package Type Package Package monmlp December 5, 2017 Title Multi-Layer Perceptron Neural Network with Optional Monotonicity Constraints Version 1.1.5 Author Ale J. Cannon Maintainer Ale J. Cannon

More information

Package factorqr. R topics documented: February 19, 2015

Package factorqr. R topics documented: February 19, 2015 Package factorqr February 19, 2015 Version 0.1-4 Date 2010-09-28 Title Bayesian quantile regression factor models Author Lane Burgette , Maintainer Lane Burgette

More information

Package neuralnet. August 16, 2016

Package neuralnet. August 16, 2016 Type Package Title Training of Neural Networks Version 1.33 Date 2016-08-05 Package neuralnet August 16, 2016 Author Stefan Fritsch [aut], Frauke Guenther [aut, cre], Marc Suling [ctb], Sebastian M. Mueller

More information

Population Invariance of Score Linking: Theory and Applications to Advanced Placement Program Examinations

Population Invariance of Score Linking: Theory and Applications to Advanced Placement Program Examinations Research Report Population Invariance of Score Linking: Theory and Applications to Advanced Placement Program Examinations Neil J. Dorans, Editor Research & Development October 2003 RR-03-27 Population

More information

Use of Continuous Exponential Families to Link Forms via Anchor Tests

Use of Continuous Exponential Families to Link Forms via Anchor Tests Research Report ETS RR 11-11 Use of Continuous Exponential Families to Link Forms via Anchor Tests Shelby J. Haberman Duanli Yan April 11 Use of Continuous Exponential Families to Link Forms via Anchor

More information

Package face. January 19, 2018

Package face. January 19, 2018 Package face January 19, 2018 Title Fast Covariance Estimation for Sparse Functional Data Version 0.1-4 Author Luo Xiao [aut,cre], Cai Li [aut], William Checkley [aut], Ciprian Crainiceanu [aut] Maintainer

More information

Package jmcm. November 25, 2017

Package jmcm. November 25, 2017 Type Package Package jmcm November 25, 2017 Title Joint Mean-Covariance Models using 'Armadillo' and S4 Version 0.1.8.0 Maintainer Jianxin Pan Fit joint mean-covariance models

More information

Package ARCensReg. September 11, 2016

Package ARCensReg. September 11, 2016 Type Package Package ARCensReg September 11, 2016 Title Fitting Univariate Censored Linear Regression Model with Autoregressive Errors Version 2.1 Date 2016-09-10 Author Fernanda L. Schumacher, Victor

More information

Equating Subscores Using Total Scaled Scores as an Anchor

Equating Subscores Using Total Scaled Scores as an Anchor Research Report ETS RR 11-07 Equating Subscores Using Total Scaled Scores as an Anchor Gautam Puhan Longjuan Liang March 2011 Equating Subscores Using Total Scaled Scores as an Anchor Gautam Puhan and

More information

Package LPTime. March 3, 2015

Package LPTime. March 3, 2015 Type Package Package LPTime March 3, 2015 Title LP Nonparametric Approach to Non-Gaussian Non-Linear Time Series Modelling Version 1.0-2 Date 2015-03-03 URL http://sites.temple.edu/deepstat/d-products/

More information

PIRLS 2016 Achievement Scaling Methodology 1

PIRLS 2016 Achievement Scaling Methodology 1 CHAPTER 11 PIRLS 2016 Achievement Scaling Methodology 1 The PIRLS approach to scaling the achievement data, based on item response theory (IRT) scaling with marginal estimation, was developed originally

More information

Package sscor. January 28, 2016

Package sscor. January 28, 2016 Type Package Package sscor January 28, 2016 Title Robust Correlation Estimation and Testing Based on Spatial Signs Version 0.2 Date 2016-01-19 Depends pcapp, robustbase, mvtnorm Provides the spatial sign

More information

Package ensemblebma. R topics documented: January 18, Version Date

Package ensemblebma. R topics documented: January 18, Version Date Version 5.1.5 Date 2018-01-18 Package ensemblebma January 18, 2018 Title Probabilistic Forecasting using Ensembles and Bayesian Model Averaging Author Chris Fraley, Adrian E. Raftery, J. McLean Sloughter,

More information

Package metansue. July 11, 2018

Package metansue. July 11, 2018 Type Package Package metansue July 11, 2018 Title Meta-Analysis of Studies with Non Statistically-Significant Unreported Effects Version 2.2 Date 2018-07-11 Author Joaquim Radua Maintainer Joaquim Radua

More information

Nonparametric Bounds Analysis for NEAT Equating

Nonparametric Bounds Analysis for NEAT Equating Nonparametric Bounds Analysis for NEAT Equating Jorge González a, c a, b, c, Ernesto San Martín a Department of Statistics, P. Universidad Católica de Chile, Chile b The Economics School of Louvain, Université

More information

Package chemcal. July 17, 2018

Package chemcal. July 17, 2018 Version 0.2.1 Date 2018-07-17 Package chemcal July 17, 2018 Title Calibration Functions for Analytical Chemistry Suggests MASS, knitr, testthat, investr Simple functions for plotting linear calibration

More information

Package mmm. R topics documented: February 20, Type Package

Package mmm. R topics documented: February 20, Type Package Package mmm February 20, 2015 Type Package Title an R package for analyzing multivariate longitudinal data with multivariate marginal models Version 1.4 Date 2014-01-01 Author Ozgur Asar, Ozlem Ilk Depends

More information

Package goftest. R topics documented: April 3, Type Package

Package goftest. R topics documented: April 3, Type Package Type Package Package goftest April 3, 2017 Title Classical Goodness-of-Fit Tests for Univariate Distributions Version 1.1-1 Date 2017-04-03 Depends R (>= 3.3) Imports stats Cramer-Von Mises and Anderson-Darling

More information

Package DiscreteLaplace

Package DiscreteLaplace Type Package Title Discrete Laplace Distributions Version 1.1.1 Date 2016-04-29 Package DiscreteLaplace May 1, 2016 Author Alessandro Barbiero , Riccardo Inchingolo

More information

Package lsei. October 23, 2017

Package lsei. October 23, 2017 Package lsei October 23, 2017 Title Solving Least Squares or Quadratic Programming Problems under Equality/Inequality Constraints Version 1.2-0 Date 2017-10-22 Description It contains functions that solve

More information

Package aspi. R topics documented: September 20, 2016

Package aspi. R topics documented: September 20, 2016 Type Package Title Analysis of Symmetry of Parasitic Infections Version 0.2.0 Date 2016-09-18 Author Matt Wayland Maintainer Matt Wayland Package aspi September 20, 2016 Tools for the

More information

Package Delaporte. August 13, 2017

Package Delaporte. August 13, 2017 Type Package Package Delaporte August 13, 2017 Title Statistical Functions for the Delaporte Distribution Version 6.1.0 Date 2017-08-13 Description Provides probability mass, distribution, quantile, random-variate

More information

Package ProDenICA. February 19, 2015

Package ProDenICA. February 19, 2015 Type Package Package ProDenICA February 19, 2015 Title Product Density Estimation for ICA using tilted Gaussian density estimates Version 1.0 Date 2010-04-19 Author Trevor Hastie, Rob Tibshirani Maintainer

More information

Package RcppSMC. March 18, 2018

Package RcppSMC. March 18, 2018 Type Package Title Rcpp Bindings for Sequential Monte Carlo Version 0.2.1 Date 2018-03-18 Package RcppSMC March 18, 2018 Author Dirk Eddelbuettel, Adam M. Johansen and Leah F. South Maintainer Dirk Eddelbuettel

More information

Package mcmcse. July 4, 2017

Package mcmcse. July 4, 2017 Version 1.3-2 Date 2017-07-03 Title Monte Carlo Standard Errors for MCMC Package mcmcse July 4, 2017 Author James M. Flegal , John Hughes , Dootika Vats ,

More information

The sbgcop Package. March 9, 2007

The sbgcop Package. March 9, 2007 The sbgcop Package March 9, 2007 Title Semiparametric Bayesian Gaussian copula estimation Version 0.95 Date 2007-03-09 Author Maintainer This package estimates parameters of

More information

Nonequivalent-Populations Design David J. Woodruff American College Testing Program

Nonequivalent-Populations Design David J. Woodruff American College Testing Program A Comparison of Three Linear Equating Methods for the Common-Item Nonequivalent-Populations Design David J. Woodruff American College Testing Program Three linear equating methods for the common-item nonequivalent-populations

More information

Package QuantifQuantile

Package QuantifQuantile Type Package Package QuantifQuantile August 13, 2015 Title Estimation of Conditional Quantiles using Optimal Quantization Version 2.2 Date 2015-08-13 Author Isabelle Charlier and Davy Paindaveine and Jerome

More information

Package clustergeneration

Package clustergeneration Version 1.3.4 Date 2015-02-18 Package clustergeneration February 19, 2015 Title Random Cluster Generation (with Specified Degree of Separation) Author Weiliang Qiu , Harry Joe

More information

Package rgabriel. February 20, 2015

Package rgabriel. February 20, 2015 Type Package Package rgabriel February 20, 2015 Title Gabriel Multiple Comparison Test and Plot the Confidence Interval on Barplot Version 0.7 Date 2013-12-28 Author Yihui XIE, Miao YU Maintainer Miao

More information

Package bayeslm. R topics documented: June 18, Type Package

Package bayeslm. R topics documented: June 18, Type Package Type Package Package bayeslm June 18, 2018 Title Efficient Sampling for Gaussian Linear Regression with Arbitrary Priors Version 0.8.0 Date 2018-6-17 Author P. Richard Hahn, Jingyu He, Hedibert Lopes Maintainer

More information

Raffaela Wolf, MS, MA. Bachelor of Science, University of Maine, Master of Science, Robert Morris University, 2008

Raffaela Wolf, MS, MA. Bachelor of Science, University of Maine, Master of Science, Robert Morris University, 2008 Assessing the Impact of Characteristics of the Test, Common-items, and Examinees on the Preservation of Equity Properties in Mixed-format Test Equating by Raffaela Wolf, MS, MA Bachelor of Science, University

More information

Package metafuse. October 17, 2016

Package metafuse. October 17, 2016 Package metafuse October 17, 2016 Type Package Title Fused Lasso Approach in Regression Coefficient Clustering Version 2.0-1 Date 2016-10-16 Author Lu Tang, Ling Zhou, Peter X.K. Song Maintainer Lu Tang

More information

Package ICBayes. September 24, 2017

Package ICBayes. September 24, 2017 Package ICBayes September 24, 2017 Title Bayesian Semiparametric Models for Interval-Censored Data Version 1.1 Date 2017-9-24 Author Chun Pan, Bo Cai, Lianming Wang, and Xiaoyan Lin Maintainer Chun Pan

More information

Package LBLGXE. R topics documented: July 20, Type Package

Package LBLGXE. R topics documented: July 20, Type Package Type Package Package LBLGXE July 20, 2015 Title Bayesian Lasso for detecting Rare (or Common) Haplotype Association and their interactions with Environmental Covariates Version 1.2 Date 2015-07-09 Author

More information

Package covsep. May 6, 2018

Package covsep. May 6, 2018 Package covsep May 6, 2018 Title Tests for Determining if the Covariance Structure of 2-Dimensional Data is Separable Version 1.1.0 Author Shahin Tavakoli [aut, cre], Davide Pigoli [ctb], John Aston [ctb]

More information

Package multivariance

Package multivariance Package multivariance January 10, 2018 Title Measuring Multivariate Dependence Using Distance Multivariance Version 1.1.0 Date 2018-01-09 Distance multivariance is a measure of dependence which can be

More information

Package JointModel. R topics documented: June 9, Title Semiparametric Joint Models for Longitudinal and Counting Processes Version 1.

Package JointModel. R topics documented: June 9, Title Semiparametric Joint Models for Longitudinal and Counting Processes Version 1. Package JointModel June 9, 2016 Title Semiparametric Joint Models for Longitudinal and Counting Processes Version 1.0 Date 2016-06-01 Author Sehee Kim Maintainer Sehee Kim

More information

Package anoint. July 19, 2015

Package anoint. July 19, 2015 Type Package Title Analysis of Interactions Version 1.4 Date 2015-07-10 Package anoint July 19, 2015 Author Ravi Varadhan and Stephanie Kovalchik Maintainer Stephanie Kovalchik

More information

Package mpmcorrelogram

Package mpmcorrelogram Type Package Package mpmcorrelogram Title Multivariate Partial Mantel Correlogram Version 0.1-4 Depends vegan Date 2017-11-17 Author Marcelino de la Cruz November 17, 2017 Maintainer Marcelino de la Cruz

More information

Using statistical equating for standard maintaining in GCSEs and A levels

Using statistical equating for standard maintaining in GCSEs and A levels Using statistical equating for standard maintaining in GCSEs and A levels Tom Bramley & Carmen Vidal Rodeiro Cambridge Assessment Research Report 22 nd January 2014 Author contact details: Tom Bramley

More information

Package idmtpreg. February 27, 2018

Package idmtpreg. February 27, 2018 Type Package Package idmtpreg February 27, 2018 Title Regression Model for Progressive Illness Death Data Version 1.1 Date 2018-02-23 Author Leyla Azarang and Manuel Oviedo de la Fuente Maintainer Leyla

More information