Type: | Package |
Title: | R Commander Plug-in for MPA Statistics |
Version: | 1.2.2 |
Date: | 2018-05-16 |
Author: | Andrew Heiss, Richard Payne, Christa Schank, Jessica Reese |
Maintainer: | Andrew Heiss <andrew@andrewheiss.com> |
Depends: | Rcmdr (≥ 1.4-0), ordinal |
Description: | Extends R Commander with a unified menu of new and pre-existing statistical functions related to public management and policy analysis statistics. Functions and menus have been renamed according to the usage in PMGT 630 in the Master of Public Administration program at Brigham Young University. |
RcmdrModels: | sclm |
License: | GPL (> 2) |
NeedsCompilation: | no |
Packaged: | 2018-05-16 17:34:49 UTC; andrew |
Repository: | CRAN |
Date/Publication: | 2018-05-16 17:53:02 UTC |
R Commander Plug-in for MPA Statistics
Description
This package provides an R Commander plugin that offers a unified menu of new and pre-existing statistical functions related to public management and policy analysis statistics. Functions and menus have been renamed according to the usage in PMGT 630 in the Master of Public Administration program at Brigham Young University.
Details
Package: | RcmdrPlugin.MPAStats |
Type: | Package |
Version: | 1.2.2 |
Date: | 2018-05-16 |
License: | GPL (>2) |
The plug-in adds an additional top-level menu named MPA Statistics to the R Commander interface, with the following submenus: Descriptive statistics, Single-sample statistics, Paired value testing, Bivariate analysis (with additional submenus that divide statistical tests by the level of measurement of the dependent and independent variables), and Multivariate analysis. Additionally, there is a function to calculate logistic regression factor change coefficients (e^b) at Models -> Factor change coefficients.
Author(s)
Andrew Heiss, Richard Payne, Christa Schank, Jessica Reese
Maintainer: Andrew Heiss <andrew@andrewheiss.com>
Dataframe Summary
Description
Summarize every numeric and factor column in a data frame.
Usage
DataframeSummary(x, conf.intervals = TRUE)
Arguments
x |
dataframe object to be summarized |
conf.intervals |
a logical indicating whether you want confidence intervals in the output |
Value
Textual summary tables for numeric and factor columns in the dataframe.
Author(s)
Andrew Heiss andrew@andrewheiss.com
Examples
DataframeSummary(USArrests)
Internal RcmdrPlugin.MPAStats Objects
Description
Internal RcmdrPlugin.MPAStats objects.
Details
These are not to be called by the user.
Textual Interpretations: MPA Stats
Description
Print textual interpretations of various tests in the RcmdrPlugin.MPAStats package. These methods are not intended to be called directly by the user via the command line. These methods will be called via the R Commander console and will produce appropriate output and textual interpretations of selected analyses.
Author(s)
Richard Payne <paynedrichard@gmail.com>
Print confidence intervals
Description
Extract and print the confidence intervals for an object of class "htest"
(i.e. results of a "t.test"
, "binom.test"
, "poisson.test"
, etc.)
Usage
printConfint(x)
Arguments
x |
an object of class |
Value
Text printed to the console.
Author(s)
Andrew Heiss <andrew@andrewheiss.com>
Examples
x <- runif(100)
.test <- t.test(x, conf.level=.99)
printConfint(.test)