简体   繁体   English

MSQC :: mult.chart忽略xlim参数

[英]MSQC::mult.chart ignores xlim argument

I computed Hotelling T2 on a normalized dataset and obtained the following chart in R: 我在归一化的数据集上计算了Hotelling T2,并在R中获得了以下图表:

在此处输入图片说明

In the chart, I want to study the interval 50-100 in the X-axis closely. 在图表中,我想仔细研究X轴上的区间50-100。 Is there any function or method in R through which this can be done? R中是否有任何功能或方法可以完成此操作? Thanks. 谢谢。

Unfortunately, MSQC::mult.chart does not support xlim argument. 不幸的是, MSQC::mult.chart不支持xlim参数。 But you can extract the values to plot and reproduce manually. 但是您可以提取值以进行绘制和手动复制。 See example below. 请参见下面的示例。

library(MSQC)
data(dowel1)
# default
mult.chart(dowel1, type = "chi", alpha = 0.05)
#> [[1]]
#> [1] "Chi-squared Control Chart"
#> 
#> $ucl
#> [1] 5.99
#> 
#> $t2
#>       [,1]
#>  [1,] 1.62
#> ...
#> 
#> $Xmv
#> [1] 0.5 1.0
#> 
#> $covariance
#>         [,1]    [,2]
#> [1,] 4.9e-05 8.6e-05
#> [2,] 8.6e-05 4.2e-04

# manual
mc <- mult.chart(dowel1, type = "chi", alpha = 0.05)
plot(seq_along(mc$t2), mc$t2, ylim = c(0, mc$ucl), type = "l")
points(seq_along(mc$t2), mc$t2)
abline(h = mc$ucl, col = 2)


# restricted
plot(seq_along(mc$t2), mc$t2, ylim = c(0, mc$ucl), type = "l", xlim = c(5, 20))
points(seq_along(mc$t2), mc$t2)
abline(h = mc$ucl, col = 2)

Created on 2019-02-10 by the reprex package (v0.2.1) reprex软件包 (v0.2.1)创建于2019-02-10

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM