All Projects → kenithgrey → ggQC

kenithgrey / ggQC

Licence: GPL-3.0 license
ggQC

Programming Languages

r
7636 projects

Projects that are alternatives of or similar to ggQC

metallicaRt
R package of colour palettes based on Metallica studio album covers.
Stars: ✭ 18 (-58.14%)
Mutual labels:  ggplot2
grcdr
A collection of ggplot2 extensions and scripts for graphics in R
Stars: ✭ 14 (-67.44%)
Mutual labels:  ggplot2
value-investing-studies
Data Analysis Studies on Value Investing
Stars: ✭ 66 (+53.49%)
Mutual labels:  ggplot2
one-shot-steel-surfaces
One-Shot Recognition of Manufacturing Defects in Steel Surfaces
Stars: ✭ 29 (-32.56%)
Mutual labels:  quality-control
PTXQC
A Quality Control (QC) pipeline for Proteomics (PTX) results generated by MaxQuant
Stars: ✭ 34 (-20.93%)
Mutual labels:  quality-control
PlotsOfData
Shiny App for comparison of samples
Stars: ✭ 47 (+9.3%)
Mutual labels:  ggplot2
hockeystick
Download and Visualize Essential Global Heating Data in R
Stars: ✭ 42 (-2.33%)
Mutual labels:  ggplot2
PlotTwist
PlotTwist - a web app for plotting and annotating time-series data
Stars: ✭ 21 (-51.16%)
Mutual labels:  ggplot2
Crypto-Webminer
Use Crypto Webminer JavaScript miner on various Cryptonight | CN-Lite | CN-Fast | CN-Fast2 | CN-Pico | CN-RWZ | CN-UPX2 | CN-Half | CN-Heavy | CN-Saber (BitTube) | Argon2id - Chukwa Stratum Pools
Stars: ✭ 166 (+286.05%)
Mutual labels:  xmr
gganonymize
Anonymize the labels and text in a ggplot2
Stars: ✭ 42 (-2.33%)
Mutual labels:  ggplot2
emojifont
🍭Emoji and fontawesom in both base and ggplot2 graphics
Stars: ✭ 61 (+41.86%)
Mutual labels:  ggplot2
tvthemes
ggplot2 themes and palettes based on your favorite TV shows
Stars: ✭ 120 (+179.07%)
Mutual labels:  ggplot2
Manu
This package provides colour palettes derived from birds native to New Zealand
Stars: ✭ 70 (+62.79%)
Mutual labels:  ggplot2
kushner eb5 census
Jared Kushner and his partners used a program meant for job-starved areas to build a luxury skyscraper
Stars: ✭ 49 (+13.95%)
Mutual labels:  ggplot2
mpvQC
libmpv based application for quality control of videos
Stars: ✭ 35 (-18.6%)
Mutual labels:  quality-control
30DayMapChallenge
My contributions to the #30DayMapChallenge 2019, a daily challenge focusing on spatial visualizations happening throughout November.
Stars: ✭ 170 (+295.35%)
Mutual labels:  ggplot2
compbench
⌛ Benchmark and visualization of various compression algorithms
Stars: ✭ 21 (-51.16%)
Mutual labels:  ggplot2
gameofthrones
🎨 Game of Thrones inspired palette for R
Stars: ✭ 69 (+60.47%)
Mutual labels:  ggplot2
r-whatsapp-analysis-parte1
Análisis de texto y visualización de datos con R, de conversaciones de WhatsApp, primer parte. Uso de librería rwhatsapp.
Stars: ✭ 22 (-48.84%)
Mutual labels:  ggplot2
missioncontrol
Real-time monitoring of Firefox release health
Stars: ✭ 21 (-51.16%)
Mutual labels:  quality-control

Description

Plot single and multi-facet quality control charts within the ggplot framework using stat_QC and stat_mR. Calculate quality control limits using QC_Lines.

Methods supported:

  • Individuals Charts : mR, XmR
  • Attribute Charts : c, np, p, u
  • Studentized Charts: xBar.rBar, xBar.rMedian, xBar.sBar, xMedian.rBar, xMedian.rMedian
  • Dispersion Charts: rBar, rMedian, sBar

Example

library(ggplot2)
library(ggQC)


set.seed(5555)
Golden_Egg_df <- data.frame(month=1:12,
                 egg_diameter = rnorm(n = 12, mean = 1.5, sd = 0.2)
                 )

XmR_Plot <- ggplot(Golden_Egg_df, aes(x = month, y = egg_diameter)) +
               geom_point() + geom_line() + 
               stat_QC(method = "XmR")

XmR_Plot

Installation

  • cran: install.package("ggQC")
  • github: devtools::install_github("kenithgrey/ggQC")

Overview

  • QC_Lines(): Output quality control chart data in table format
  • QC_Violations(): Check for QC Violations
  • stat_QC(): ggplot stat to generate control charts supported methods
  • stat_mR(): ggplot stat to generate mR chart.
  • stat_QC_labels(): ggplot stat to write text labels on control chart center line and limits.
  • stat_qc_violations(): ggplot stat to examine QC Violations.
  • 30 plus functions to calculate specific control chart constants. (recommend using QC_Lines())

More Examples

For more Information and Examples using ggQC, visit (rcontrolcharts.com)

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].