├── .Rbuildignore ├── .gitignore ├── .travis.yml ├── Build-Ignore ├── Testing-stat_qc_violations.R └── ggQC-Tracking.R ├── CRAN-RELEASE ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R ├── 01_FUN_Factories.R ├── 02_QC_FUN_Capability.R ├── 02_QC_FUNs.R ├── 02_QC_Violations.R ├── 03_Summay_FUNs.R ├── 03_Summay__Capability_FUNs.R ├── 04_facet_qc_violations.R ├── 04_stat_mR.r ├── 04_stat_pareto.r ├── 04_stat_qc.R ├── 04_stat_qc_capability.R ├── 04_stat_qc_violations.r ├── 0_QC_Constants.r └── sysdata.rda ├── README-unnamed-chunk-2-1.png ├── README.Rmd ├── README.md ├── cran-comments.md ├── ggQC.Rproj ├── man ├── Cp.Rd ├── Cpk.Rd ├── DNS.Rd ├── LD.Rd ├── Pp.Rd ├── Ppk.Rd ├── QC_Capability.Rd ├── QC_Lines.Rd ├── QC_Violations.Rd ├── QCrange.Rd ├── UD.Rd ├── cBar_LCL.Rd ├── cBar_UCL.Rd ├── capability.summary.Rd ├── mR.Rd ├── mR_UCL.Rd ├── mR_points.Rd ├── npBar.Rd ├── npBar_LCL.Rd ├── npBar_UCL.Rd ├── pBar.Rd ├── pBar_LCL.Rd ├── pBar_UCL.Rd ├── process_tolerance.Rd ├── rBar.Rd ├── rBar_LCL.Rd ├── rBar_UCL.Rd ├── rMedian.Rd ├── rMedian_LCL.Rd ├── rMedian_UCL.Rd ├── sBar.Rd ├── sBar_LCL.Rd ├── sBar_UCL.Rd ├── stat_QC.Rd ├── stat_QC_CAPA.Rd ├── stat_QC_Capability.Rd ├── stat_QC_cap_hlabels.Rd ├── stat_QC_cap_hlines.Rd ├── stat_QC_cap_summary.Rd ├── stat_QC_cap_vlabels.Rd ├── stat_QC_cap_vlines.Rd ├── stat_QC_labels.Rd ├── stat_mR.Rd ├── stat_pareto.Rd ├── stat_qc_violations.Rd ├── uBar.Rd ├── uBar_LCL.Rd ├── uBar_UCL.Rd ├── xBar_Bar.Rd ├── xBar_one_LCL.Rd ├── xBar_one_UCL.Rd ├── xBar_rBar_LCL.Rd ├── xBar_rBar_UCL.Rd ├── xBar_rMedian_LCL.Rd ├── xBar_rMedian_UCL.Rd ├── xBar_sBar_LCL.Rd ├── xBar_sBar_UCL.Rd ├── xMedian_Bar.Rd ├── xMedian_rBar_LCL.Rd ├── xMedian_rBar_UCL.Rd ├── xMedian_rMedian_LCL.Rd └── xMedian_rMedian_UCL.Rd ├── news.Rmd ├── news.md ├── revdep └── checks.rds ├── tests ├── testthat.R └── testthat │ ├── Rbar_QC_ylines_results.csv │ ├── Wheeler104_results.csv │ ├── Wheeler104_test.csv │ ├── Wheeler105_results.csv │ ├── Wheeler105_test.csv │ ├── Wheeler108_results.csv │ ├── Wheeler108_test.csv │ ├── Wheeler118_result.csv │ ├── Wheeler49_Result.csv │ ├── Wheeler49_and_WheelerEMP15_Result.csv │ ├── Wheeler91_QC_Result.csv │ ├── WheelerEMP15_Result.csv │ ├── Wheeler_91_LongForm_QC_Grouping_Violation.csv │ ├── Wheeler_USPC_103.csv │ ├── Wheeler_USPC_43.csv │ ├── medianRangeData_Excel_SPC.csv │ ├── minitabTestFile.csv │ ├── minitabTestFile_SBAR.csv │ ├── sbar_QC_ylines_results.csv │ ├── sxBar_sBar_QC_ylines_results.csv │ ├── testThat_Violation.R │ ├── test_Indv.r │ ├── test_Rbar--Rbar_UCL--Rbar_LCL.r │ ├── test_capability_methods.r │ ├── test_count_and_proportion_data.R │ ├── test_ggplots.R │ ├── test_sBar--sBar_UCL--sBar_LCL.r │ ├── test_xBar_Bar--xBar_rBar_UL_CL--Grouping_FUN.r │ ├── test_xMedian_rBar_w_limits__xMedian_rMedian_w_limits.R │ ├── wheeler232-233.csv │ ├── wheeler232-233_long.csv │ ├── wheeler264_test.csv │ ├── wheeler276_test.csv │ ├── wheeler91.csv │ ├── wheeler_USPC_118.csv │ ├── wheeler_USPC_264.csv │ ├── wheeler_USPC_276.csv │ ├── xMedian_rBar_QC_ylines_results.csv │ └── xMedian_rMedian_QC_ylines_results.csv └── vignettes ├── XbarR_HOTTO.Rmd └── XmR_HOWTO.Rmd /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenithgrey/ggQC/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenithgrey/ggQC/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenithgrey/ggQC/HEAD/.travis.yml -------------------------------------------------------------------------------- /Build-Ignore/Testing-stat_qc_violations.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenithgrey/ggQC/HEAD/Build-Ignore/Testing-stat_qc_violations.R -------------------------------------------------------------------------------- /Build-Ignore/ggQC-Tracking.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenithgrey/ggQC/HEAD/Build-Ignore/ggQC-Tracking.R -------------------------------------------------------------------------------- /CRAN-RELEASE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenithgrey/ggQC/HEAD/CRAN-RELEASE -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenithgrey/ggQC/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenithgrey/ggQC/HEAD/LICENSE -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenithgrey/ggQC/HEAD/NAMESPACE -------------------------------------------------------------------------------- /R/01_FUN_Factories.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenithgrey/ggQC/HEAD/R/01_FUN_Factories.R -------------------------------------------------------------------------------- /R/02_QC_FUN_Capability.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenithgrey/ggQC/HEAD/R/02_QC_FUN_Capability.R -------------------------------------------------------------------------------- /R/02_QC_FUNs.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenithgrey/ggQC/HEAD/R/02_QC_FUNs.R -------------------------------------------------------------------------------- /R/02_QC_Violations.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenithgrey/ggQC/HEAD/R/02_QC_Violations.R -------------------------------------------------------------------------------- /R/03_Summay_FUNs.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenithgrey/ggQC/HEAD/R/03_Summay_FUNs.R -------------------------------------------------------------------------------- /R/03_Summay__Capability_FUNs.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenithgrey/ggQC/HEAD/R/03_Summay__Capability_FUNs.R -------------------------------------------------------------------------------- /R/04_facet_qc_violations.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenithgrey/ggQC/HEAD/R/04_facet_qc_violations.R -------------------------------------------------------------------------------- /R/04_stat_mR.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenithgrey/ggQC/HEAD/R/04_stat_mR.r -------------------------------------------------------------------------------- /R/04_stat_pareto.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenithgrey/ggQC/HEAD/R/04_stat_pareto.r -------------------------------------------------------------------------------- /R/04_stat_qc.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenithgrey/ggQC/HEAD/R/04_stat_qc.R -------------------------------------------------------------------------------- /R/04_stat_qc_capability.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenithgrey/ggQC/HEAD/R/04_stat_qc_capability.R -------------------------------------------------------------------------------- /R/04_stat_qc_violations.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenithgrey/ggQC/HEAD/R/04_stat_qc_violations.r -------------------------------------------------------------------------------- /R/0_QC_Constants.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenithgrey/ggQC/HEAD/R/0_QC_Constants.r -------------------------------------------------------------------------------- /R/sysdata.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenithgrey/ggQC/HEAD/R/sysdata.rda -------------------------------------------------------------------------------- /README-unnamed-chunk-2-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenithgrey/ggQC/HEAD/README-unnamed-chunk-2-1.png -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenithgrey/ggQC/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenithgrey/ggQC/HEAD/README.md -------------------------------------------------------------------------------- /cran-comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenithgrey/ggQC/HEAD/cran-comments.md -------------------------------------------------------------------------------- /ggQC.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenithgrey/ggQC/HEAD/ggQC.Rproj -------------------------------------------------------------------------------- /man/Cp.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenithgrey/ggQC/HEAD/man/Cp.Rd -------------------------------------------------------------------------------- /man/Cpk.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenithgrey/ggQC/HEAD/man/Cpk.Rd -------------------------------------------------------------------------------- /man/DNS.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenithgrey/ggQC/HEAD/man/DNS.Rd -------------------------------------------------------------------------------- /man/LD.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenithgrey/ggQC/HEAD/man/LD.Rd -------------------------------------------------------------------------------- /man/Pp.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenithgrey/ggQC/HEAD/man/Pp.Rd -------------------------------------------------------------------------------- /man/Ppk.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenithgrey/ggQC/HEAD/man/Ppk.Rd -------------------------------------------------------------------------------- /man/QC_Capability.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenithgrey/ggQC/HEAD/man/QC_Capability.Rd -------------------------------------------------------------------------------- /man/QC_Lines.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenithgrey/ggQC/HEAD/man/QC_Lines.Rd -------------------------------------------------------------------------------- /man/QC_Violations.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenithgrey/ggQC/HEAD/man/QC_Violations.Rd -------------------------------------------------------------------------------- /man/QCrange.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenithgrey/ggQC/HEAD/man/QCrange.Rd -------------------------------------------------------------------------------- /man/UD.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenithgrey/ggQC/HEAD/man/UD.Rd -------------------------------------------------------------------------------- /man/cBar_LCL.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenithgrey/ggQC/HEAD/man/cBar_LCL.Rd -------------------------------------------------------------------------------- /man/cBar_UCL.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenithgrey/ggQC/HEAD/man/cBar_UCL.Rd -------------------------------------------------------------------------------- /man/capability.summary.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenithgrey/ggQC/HEAD/man/capability.summary.Rd -------------------------------------------------------------------------------- /man/mR.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenithgrey/ggQC/HEAD/man/mR.Rd -------------------------------------------------------------------------------- /man/mR_UCL.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenithgrey/ggQC/HEAD/man/mR_UCL.Rd -------------------------------------------------------------------------------- /man/mR_points.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenithgrey/ggQC/HEAD/man/mR_points.Rd -------------------------------------------------------------------------------- /man/npBar.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenithgrey/ggQC/HEAD/man/npBar.Rd -------------------------------------------------------------------------------- /man/npBar_LCL.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenithgrey/ggQC/HEAD/man/npBar_LCL.Rd -------------------------------------------------------------------------------- /man/npBar_UCL.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenithgrey/ggQC/HEAD/man/npBar_UCL.Rd -------------------------------------------------------------------------------- /man/pBar.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenithgrey/ggQC/HEAD/man/pBar.Rd -------------------------------------------------------------------------------- /man/pBar_LCL.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenithgrey/ggQC/HEAD/man/pBar_LCL.Rd -------------------------------------------------------------------------------- /man/pBar_UCL.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenithgrey/ggQC/HEAD/man/pBar_UCL.Rd -------------------------------------------------------------------------------- /man/process_tolerance.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenithgrey/ggQC/HEAD/man/process_tolerance.Rd -------------------------------------------------------------------------------- /man/rBar.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenithgrey/ggQC/HEAD/man/rBar.Rd -------------------------------------------------------------------------------- /man/rBar_LCL.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenithgrey/ggQC/HEAD/man/rBar_LCL.Rd -------------------------------------------------------------------------------- /man/rBar_UCL.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenithgrey/ggQC/HEAD/man/rBar_UCL.Rd -------------------------------------------------------------------------------- /man/rMedian.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenithgrey/ggQC/HEAD/man/rMedian.Rd -------------------------------------------------------------------------------- /man/rMedian_LCL.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenithgrey/ggQC/HEAD/man/rMedian_LCL.Rd -------------------------------------------------------------------------------- /man/rMedian_UCL.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenithgrey/ggQC/HEAD/man/rMedian_UCL.Rd -------------------------------------------------------------------------------- /man/sBar.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenithgrey/ggQC/HEAD/man/sBar.Rd -------------------------------------------------------------------------------- /man/sBar_LCL.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenithgrey/ggQC/HEAD/man/sBar_LCL.Rd -------------------------------------------------------------------------------- /man/sBar_UCL.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenithgrey/ggQC/HEAD/man/sBar_UCL.Rd -------------------------------------------------------------------------------- /man/stat_QC.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenithgrey/ggQC/HEAD/man/stat_QC.Rd -------------------------------------------------------------------------------- /man/stat_QC_CAPA.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenithgrey/ggQC/HEAD/man/stat_QC_CAPA.Rd -------------------------------------------------------------------------------- /man/stat_QC_Capability.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenithgrey/ggQC/HEAD/man/stat_QC_Capability.Rd -------------------------------------------------------------------------------- /man/stat_QC_cap_hlabels.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenithgrey/ggQC/HEAD/man/stat_QC_cap_hlabels.Rd -------------------------------------------------------------------------------- /man/stat_QC_cap_hlines.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenithgrey/ggQC/HEAD/man/stat_QC_cap_hlines.Rd -------------------------------------------------------------------------------- /man/stat_QC_cap_summary.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenithgrey/ggQC/HEAD/man/stat_QC_cap_summary.Rd -------------------------------------------------------------------------------- /man/stat_QC_cap_vlabels.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenithgrey/ggQC/HEAD/man/stat_QC_cap_vlabels.Rd -------------------------------------------------------------------------------- /man/stat_QC_cap_vlines.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenithgrey/ggQC/HEAD/man/stat_QC_cap_vlines.Rd -------------------------------------------------------------------------------- /man/stat_QC_labels.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenithgrey/ggQC/HEAD/man/stat_QC_labels.Rd -------------------------------------------------------------------------------- /man/stat_mR.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenithgrey/ggQC/HEAD/man/stat_mR.Rd -------------------------------------------------------------------------------- /man/stat_pareto.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenithgrey/ggQC/HEAD/man/stat_pareto.Rd -------------------------------------------------------------------------------- /man/stat_qc_violations.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenithgrey/ggQC/HEAD/man/stat_qc_violations.Rd -------------------------------------------------------------------------------- /man/uBar.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenithgrey/ggQC/HEAD/man/uBar.Rd -------------------------------------------------------------------------------- /man/uBar_LCL.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenithgrey/ggQC/HEAD/man/uBar_LCL.Rd -------------------------------------------------------------------------------- /man/uBar_UCL.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenithgrey/ggQC/HEAD/man/uBar_UCL.Rd -------------------------------------------------------------------------------- /man/xBar_Bar.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenithgrey/ggQC/HEAD/man/xBar_Bar.Rd -------------------------------------------------------------------------------- /man/xBar_one_LCL.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenithgrey/ggQC/HEAD/man/xBar_one_LCL.Rd -------------------------------------------------------------------------------- /man/xBar_one_UCL.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenithgrey/ggQC/HEAD/man/xBar_one_UCL.Rd -------------------------------------------------------------------------------- /man/xBar_rBar_LCL.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenithgrey/ggQC/HEAD/man/xBar_rBar_LCL.Rd -------------------------------------------------------------------------------- /man/xBar_rBar_UCL.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenithgrey/ggQC/HEAD/man/xBar_rBar_UCL.Rd -------------------------------------------------------------------------------- /man/xBar_rMedian_LCL.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenithgrey/ggQC/HEAD/man/xBar_rMedian_LCL.Rd -------------------------------------------------------------------------------- /man/xBar_rMedian_UCL.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenithgrey/ggQC/HEAD/man/xBar_rMedian_UCL.Rd -------------------------------------------------------------------------------- /man/xBar_sBar_LCL.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenithgrey/ggQC/HEAD/man/xBar_sBar_LCL.Rd -------------------------------------------------------------------------------- /man/xBar_sBar_UCL.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenithgrey/ggQC/HEAD/man/xBar_sBar_UCL.Rd -------------------------------------------------------------------------------- /man/xMedian_Bar.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenithgrey/ggQC/HEAD/man/xMedian_Bar.Rd -------------------------------------------------------------------------------- /man/xMedian_rBar_LCL.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenithgrey/ggQC/HEAD/man/xMedian_rBar_LCL.Rd -------------------------------------------------------------------------------- /man/xMedian_rBar_UCL.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenithgrey/ggQC/HEAD/man/xMedian_rBar_UCL.Rd -------------------------------------------------------------------------------- /man/xMedian_rMedian_LCL.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenithgrey/ggQC/HEAD/man/xMedian_rMedian_LCL.Rd -------------------------------------------------------------------------------- /man/xMedian_rMedian_UCL.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenithgrey/ggQC/HEAD/man/xMedian_rMedian_UCL.Rd -------------------------------------------------------------------------------- /news.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenithgrey/ggQC/HEAD/news.Rmd -------------------------------------------------------------------------------- /news.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenithgrey/ggQC/HEAD/news.md -------------------------------------------------------------------------------- /revdep/checks.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenithgrey/ggQC/HEAD/revdep/checks.rds -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenithgrey/ggQC/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/Rbar_QC_ylines_results.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenithgrey/ggQC/HEAD/tests/testthat/Rbar_QC_ylines_results.csv -------------------------------------------------------------------------------- /tests/testthat/Wheeler104_results.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenithgrey/ggQC/HEAD/tests/testthat/Wheeler104_results.csv -------------------------------------------------------------------------------- /tests/testthat/Wheeler104_test.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenithgrey/ggQC/HEAD/tests/testthat/Wheeler104_test.csv -------------------------------------------------------------------------------- /tests/testthat/Wheeler105_results.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenithgrey/ggQC/HEAD/tests/testthat/Wheeler105_results.csv -------------------------------------------------------------------------------- /tests/testthat/Wheeler105_test.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenithgrey/ggQC/HEAD/tests/testthat/Wheeler105_test.csv -------------------------------------------------------------------------------- /tests/testthat/Wheeler108_results.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenithgrey/ggQC/HEAD/tests/testthat/Wheeler108_results.csv -------------------------------------------------------------------------------- /tests/testthat/Wheeler108_test.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenithgrey/ggQC/HEAD/tests/testthat/Wheeler108_test.csv -------------------------------------------------------------------------------- /tests/testthat/Wheeler118_result.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenithgrey/ggQC/HEAD/tests/testthat/Wheeler118_result.csv -------------------------------------------------------------------------------- /tests/testthat/Wheeler49_Result.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenithgrey/ggQC/HEAD/tests/testthat/Wheeler49_Result.csv -------------------------------------------------------------------------------- /tests/testthat/Wheeler49_and_WheelerEMP15_Result.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenithgrey/ggQC/HEAD/tests/testthat/Wheeler49_and_WheelerEMP15_Result.csv -------------------------------------------------------------------------------- /tests/testthat/Wheeler91_QC_Result.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenithgrey/ggQC/HEAD/tests/testthat/Wheeler91_QC_Result.csv -------------------------------------------------------------------------------- /tests/testthat/WheelerEMP15_Result.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenithgrey/ggQC/HEAD/tests/testthat/WheelerEMP15_Result.csv -------------------------------------------------------------------------------- /tests/testthat/Wheeler_91_LongForm_QC_Grouping_Violation.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenithgrey/ggQC/HEAD/tests/testthat/Wheeler_91_LongForm_QC_Grouping_Violation.csv -------------------------------------------------------------------------------- /tests/testthat/Wheeler_USPC_103.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenithgrey/ggQC/HEAD/tests/testthat/Wheeler_USPC_103.csv -------------------------------------------------------------------------------- /tests/testthat/Wheeler_USPC_43.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenithgrey/ggQC/HEAD/tests/testthat/Wheeler_USPC_43.csv -------------------------------------------------------------------------------- /tests/testthat/medianRangeData_Excel_SPC.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenithgrey/ggQC/HEAD/tests/testthat/medianRangeData_Excel_SPC.csv -------------------------------------------------------------------------------- /tests/testthat/minitabTestFile.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenithgrey/ggQC/HEAD/tests/testthat/minitabTestFile.csv -------------------------------------------------------------------------------- /tests/testthat/minitabTestFile_SBAR.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenithgrey/ggQC/HEAD/tests/testthat/minitabTestFile_SBAR.csv -------------------------------------------------------------------------------- /tests/testthat/sbar_QC_ylines_results.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenithgrey/ggQC/HEAD/tests/testthat/sbar_QC_ylines_results.csv -------------------------------------------------------------------------------- /tests/testthat/sxBar_sBar_QC_ylines_results.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenithgrey/ggQC/HEAD/tests/testthat/sxBar_sBar_QC_ylines_results.csv -------------------------------------------------------------------------------- /tests/testthat/testThat_Violation.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenithgrey/ggQC/HEAD/tests/testthat/testThat_Violation.R -------------------------------------------------------------------------------- /tests/testthat/test_Indv.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenithgrey/ggQC/HEAD/tests/testthat/test_Indv.r -------------------------------------------------------------------------------- /tests/testthat/test_Rbar--Rbar_UCL--Rbar_LCL.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenithgrey/ggQC/HEAD/tests/testthat/test_Rbar--Rbar_UCL--Rbar_LCL.r -------------------------------------------------------------------------------- /tests/testthat/test_capability_methods.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenithgrey/ggQC/HEAD/tests/testthat/test_capability_methods.r -------------------------------------------------------------------------------- /tests/testthat/test_count_and_proportion_data.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenithgrey/ggQC/HEAD/tests/testthat/test_count_and_proportion_data.R -------------------------------------------------------------------------------- /tests/testthat/test_ggplots.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenithgrey/ggQC/HEAD/tests/testthat/test_ggplots.R -------------------------------------------------------------------------------- /tests/testthat/test_sBar--sBar_UCL--sBar_LCL.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenithgrey/ggQC/HEAD/tests/testthat/test_sBar--sBar_UCL--sBar_LCL.r -------------------------------------------------------------------------------- /tests/testthat/test_xBar_Bar--xBar_rBar_UL_CL--Grouping_FUN.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenithgrey/ggQC/HEAD/tests/testthat/test_xBar_Bar--xBar_rBar_UL_CL--Grouping_FUN.r -------------------------------------------------------------------------------- /tests/testthat/test_xMedian_rBar_w_limits__xMedian_rMedian_w_limits.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenithgrey/ggQC/HEAD/tests/testthat/test_xMedian_rBar_w_limits__xMedian_rMedian_w_limits.R -------------------------------------------------------------------------------- /tests/testthat/wheeler232-233.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenithgrey/ggQC/HEAD/tests/testthat/wheeler232-233.csv -------------------------------------------------------------------------------- /tests/testthat/wheeler232-233_long.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenithgrey/ggQC/HEAD/tests/testthat/wheeler232-233_long.csv -------------------------------------------------------------------------------- /tests/testthat/wheeler264_test.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenithgrey/ggQC/HEAD/tests/testthat/wheeler264_test.csv -------------------------------------------------------------------------------- /tests/testthat/wheeler276_test.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenithgrey/ggQC/HEAD/tests/testthat/wheeler276_test.csv -------------------------------------------------------------------------------- /tests/testthat/wheeler91.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenithgrey/ggQC/HEAD/tests/testthat/wheeler91.csv -------------------------------------------------------------------------------- /tests/testthat/wheeler_USPC_118.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenithgrey/ggQC/HEAD/tests/testthat/wheeler_USPC_118.csv -------------------------------------------------------------------------------- /tests/testthat/wheeler_USPC_264.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenithgrey/ggQC/HEAD/tests/testthat/wheeler_USPC_264.csv -------------------------------------------------------------------------------- /tests/testthat/wheeler_USPC_276.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenithgrey/ggQC/HEAD/tests/testthat/wheeler_USPC_276.csv -------------------------------------------------------------------------------- /tests/testthat/xMedian_rBar_QC_ylines_results.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenithgrey/ggQC/HEAD/tests/testthat/xMedian_rBar_QC_ylines_results.csv -------------------------------------------------------------------------------- /tests/testthat/xMedian_rMedian_QC_ylines_results.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenithgrey/ggQC/HEAD/tests/testthat/xMedian_rMedian_QC_ylines_results.csv -------------------------------------------------------------------------------- /vignettes/XbarR_HOTTO.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenithgrey/ggQC/HEAD/vignettes/XbarR_HOTTO.Rmd -------------------------------------------------------------------------------- /vignettes/XmR_HOWTO.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenithgrey/ggQC/HEAD/vignettes/XmR_HOWTO.Rmd --------------------------------------------------------------------------------