Title: | R Commander Plug-in for MPA Statistics |
---|---|
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. |
Authors: | Andrew Heiss, Richard Payne, Christa Schank, Jessica Reese |
Maintainer: | Andrew Heiss <[email protected]> |
License: | GPL (>2) |
Version: | 1.2.2 |
Built: | 2024-11-04 03:49:48 UTC |
Source: | https://github.com/andrewheiss/rcmdrplugin.mpastats |
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.
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.
Andrew Heiss, Richard Payne, Christa Schank, Jessica Reese
Maintainer: Andrew Heiss <[email protected]>
Summarize every numeric and factor column in a data frame.
DataframeSummary(x, conf.intervals = TRUE)
DataframeSummary(x, conf.intervals = TRUE)
x |
dataframe object to be summarized |
conf.intervals |
a logical indicating whether you want confidence intervals in the output |
Textual summary tables for numeric and factor columns in the dataframe.
Andrew Heiss [email protected]
DataframeSummary(USArrests)
DataframeSummary(USArrests)
Extract and print the confidence intervals for an object of class "htest"
(i.e. results of a "t.test"
, "binom.test"
, "poisson.test"
, etc.)
printConfint(x)
printConfint(x)
x |
an object of class |
Text printed to the console.
Andrew Heiss <[email protected]>
x <- runif(100) .test <- t.test(x, conf.level=.99) printConfint(.test)
x <- runif(100) .test <- t.test(x, conf.level=.99) printConfint(.test)
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.
Richard Payne <[email protected]>