Learn R Programming

Overview

xmrr is a package designed to generate and visualize control charts from time-series data.

Installation

For the development version:

devtools::install_github("zanidean/xmrr")

For the official CRAN version:

install.packages("xmrr")

Usage

XMRS have two key asssumptions:

  • Measurements of value happen over sequential time.

  • Each unit of time has only one measurement of value.

This snippet shows the basic syntax:

Year <- seq(2001, 2009, 1)
Measure <-  runif(length(Year))

df <- data.frame(Year, Measure)

xmr(df, "Measure", recalc = T)

Copy Link

Version

Install

install.packages('xmrr')

Monthly Downloads

165

Version

1.1.1

License

GPL-3

Maintainer

Alex Zanidean

Last Published

June 8th, 2020

Functions in xmrr (1.1.1)

xmr_chart2

Generate the XMR chart for XMR data.
xmr_chart

Generate the XMR chart for XMR data
xmr2

Tidyeval Version of xmr()
xmr

Generate the XMR data for any time-series data.