Как определить, где находится ошибка в построении графика Q-Q? - PullRequest
0 голосов
/ 29 августа 2018

Следующие два набора кода выполняют ту же работу. Но вывод выглядит иначе. Есть ли место, которое я неправильно понял?

```{r}
set.seed(100)
data = data.frame("Height" = sample(45:65, size = 100, replace = TRUE),
                 "Weight" = sample(145:175, size = 100, replace = TRUE),
                 "SBP"    = rnorm(100, 130, 10),
                 "DBP"    = rnorm(100, 90, 10)
                 )
head(data)
```


## Find Mahalanobis Distance (Sample Quantile)

```{r}
Stat.dist = mahalanobis(data, center = colMeans(data), cov = cov(data))
Stat.dist = sort(Stat.dist)
Stat.dist
```



## Find the theoretical quantile value

```{r}
theo.quant = NULL
for (j in 1:nrow(data)){
n = nrow(data)
k = (n-j+1/2)/n
theo.quant[j] = qchisq(k,df = 4,lower.tail = FALSE)
}
theo.quant
```

## Plot Statistical Distance Vs Theoretical Quantile

```{r, fig.height= 4, fig.width=5,fig.align='center'}
plot(Stat.dist~theo.quant,
     xlim = c(0,15), ylim = c(0,15),
     ylab = "Theorectical Quantile",
     xlab = "Statistical Distance (Mahalanobis Distance)",
     pch = 16)
```
Plotting the Q-Q plot using `MVN` package. 

```{r message=FALSE, warning=FALSE, fig.height=4, fig.width=5, fig.align='center'}
library(MVN)
mvn(data = data, multivariateOutlierMethod = "quan" )
```

Выводы соответствующего метода приведены ниже:

Построение расстояния махалеби против квантиля чисел:

enter image description here

и график Q-Q с использованием пакета MVN:

enter image description here

1 Ответ

0 голосов
/ 29 августа 2018

Первый участок имеет theo.quant на x-axis и Stat.dist на y-axis. Второй сюжет поменял их.

plot(y = Stat.dist, x = theo.quant)

plot(x = Stat.dist, y = theo.quant)

...