plot.sValues: Plot method for S-values

Description Usage Arguments Details Value Examples

Description

Plot methods for objects of the class sValues.

Usage

1
2
## S3 method for class 'sValues'
plot(x, type = "t_s_plot", ...)

Arguments

x

an object of class sValues.

type

the type of the plot. Current options are t_s_plot which returns a scatterplot of s-values vs t-values for all coefficients and beta_plot which returns a plot of the different estimates for the coefficients.

...

additional arguments to be passed to the plot functions. See details.

Details

Additional arguments:

t_s_plot

beta_plot

Value

It returns a ggplot object with the requested plot.

Examples

1
2
3
4
5
6
7
# growth regressions example
data(economic_growth)
eg_sv <- sValues(GR6096 ~ ., data = economic_growth)
plot(eg_sv, R2_bounds = c(0.5, 1))
plot(eg_sv, R2_bounds = c(0.1, 1))
plot(eg_sv, type = "beta_plot", variable = "OPENDEC1", error_bar = FALSE)
plot(eg_sv, type = "beta_plot", variable = "OPENDEC1", error_bar = TRUE)

sValues documentation built on May 2, 2019, 10:02 a.m.