Package 'RcmdrPlugin.MPAStats'

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

Help Index


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 <[email protected]>


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 [email protected]

Examples

DataframeSummary(USArrests)

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 "htest"

Value

Text printed to the console.

Author(s)

Andrew Heiss <[email protected]>

Examples

x <- runif(100)
  .test <- t.test(x, conf.level=.99)
  printConfint(.test)

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 <[email protected]>