1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
|
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/tidiers.R
\name{tidy.mipo}
\alias{tidy.mipo}
\title{Tidy method to extract results from a `mipo` object}
\usage{
\method{tidy}{mipo}(x, conf.int = FALSE, conf.level = 0.95, ...)
}
\arguments{
\item{x}{An object of class \code{mipo}}
\item{conf.int}{Logical. Should confidence intervals be returned?}
\item{conf.level}{Confidence level for intervals. Defaults to .95}
\item{...}{extra arguments (not used)}
}
\value{
A dataframe withh these columns:
\itemize{
\item term
\item estimate
\item ubar
\item b
\item t
\item dfcom
\item df
\item riv
\item lambda
\item fmi
\item p.value
\item conf.low (if called with conf.int = TRUE)
\item conf.high (if called with conf.int = TRUE)
}
}
\description{
Tidy method to extract results from a `mipo` object
}
\keyword{internal}
|