jointest objectsMethods to extract and manipulate relevant information from
a jointest object.
print method for class "jointest".
summary method for class "jointest"
p.adjust method for class "jointest".
Add adjusted p-values into the jointest object.
plot method for class "jointest"
This plot function visualizes p-values from multiverse models, with
different markers to indicate statistical significance levels as defined by
the mark_signif argument (default is 0.05). Points are plotted with
varying shapes based on whether the p-value is below the significance threshold,
and colors are used to distinguish between different coefficients.
# S3 method for jointest
print(x, ...)# S3 method for jointest
summary(object, ...)
p.adjust(object, method = "maxT", tail = 0, ...)
# S3 method for jointest
plot(x, ...)
an object of class jointest.
additional arguments to be passed, i.e., mark_signif and
p.values=c("raw","adjusted"). See details.
an object of class jointest.
any method implemented in flip::flip.adjust or
a custom function. In the last case it must be a function that uses a matrix
as input and returns a vector of adjusted p-values equal to the number of columns of the inputed matrix.
argument: expresses the tail direction of the alternative hypothesis. It can be "two.sided" (or 0, the default), "less" (or -1) or "greater" (or +1).
mark_signif argument: numeric value representing the significance threshold
for marking p-values. Any p-value below this threshold will be marked
with a dot. The default is 0.05.
p.values argument: a character vector specifying which p-values to display.
It can be either "raw" for raw p-values or "adjusted" for
adjusted p-values. The default is "raw".
flip.adjust