Description Usage Arguments Value Examples
View source: R/method_summary.R
Summary method for class "york".
1 2 |
object |
a fitted object of class inheriting from "york". |
... |
additional arguments affecting the summary produced. |
The function summary.york computes and returns a list, of summary statistics of the fitted york model given in object.
summary of the the weighted x residuals.
summary of the the weighted y residuals.
a matrix which contains the York estimates for intercept and slope of the best-fit straight line with their respective standard errors.
a vector of strings with the information of the value of the test statistic the degrees of freedom and the p-value as first element and the test result whether H0 can be rejected or not as second element.
1 2 3 4 5 6 7 8 9 | # Example: York's regression with weight data taken from Pearson (1901):
x <- c(0.0, 0.9, 1.8, 2.6, 3.3, 4.4, 5.2, 6.1, 6.5, 7.4)
y <- c(5.9, 5.4, 4.4, 4.6, 3.5, 3.7, 2.8, 2.8, 2.4, 1.5)
weights_x <- c(1e+3, 1e+3, 5e+2, 8e+2, 2e+2, 8e+1, 6e+1, 2e+1, 1.8, 1)
weights_y <- c(1, 1.8, 4, 8, 20, 20, 70, 70, 1e+2, 5e+2)
# fit york model and summarize
york_fit <- york(x, y, weights_x, weights_y, r_xy_errors = 0)
summary(york_fit)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.