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 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81
|
\name{seg}
\alias{seg}
%- Also NEED an '\alias' for EACH other topic documented here.
\title{
Specifying a segmented/stepmented term in the segreg/stepreg formula
}
\description{
Function used to define a segmented (stepmented) term within the segreg (stepreg) formula. The function simply passes relevant information to proper fitter functions.
}
\usage{
seg(x, npsi = 1, psi = NA, est = NA, R = NA, fixed.psi = NULL, by = NULL, f.x = I)
}
%- maybe also 'usage' for other objects documented here.
\arguments{
\item{x}{
The segmented/stepmented (numeric) covariate
}
\item{npsi}{
The number of breakpoints/jumpoints to estimate. Default to \code{npsi=1}. If \code{by} has been specified and \code{npsi} is a scalar, the same \code{npsi} applies to all categories of the factor \code{by}; otherwise it can be vector, wherein
the entries represent the number of breakpoints of the segmented relationships within the categories of \code{by}.
The \code{npsi} starting values are computed according the specification of \code{quant} in \code{\link{seg.control}}.
}
\item{psi}{
Numerical vector indicating possible starting value(s) for the breakpoint(s). When provided, \code{psi} overwrites
\code{npsi}. If \code{by} has been specified and \code{psi} is a vector, the same \code{psi} applies to all categories of the factor \code{by}. Otherwise \code{psi} can be a list, wherein the components represent
the starting values of the segmented/stepmented relationships within the categories of \code{by}.
}
\item{est}{
Possible vector (of length equal to \code{npsi+1}) of 1's and 0's to indicate whether the slopes have to be estimated
or fixed to zero. \code{NA}, the default, means all ones, namely every slope is estimated. Consecutive zeroes are not allowed. If it is a vector and \code{by} has been specified, the same \code{est} applies to all categories of the factor \code{by}; otherwise \code{est} can be a list, wherein the components represent the slope constraints of the segmented relationships within the categories of \code{by}.
}
\item{R}{
Matrix to constrain the slopes. If provided, it overwrites the matrix (which is built internally) coming from the specification of \code{est}. If matrix and \code{by} has been specified, the same \code{R} applies to all categories of the factor \code{by}; otherwise \code{R} can be a list, wherein the components represent the slope constraints of the segmented relationships within the categories of \code{by}.
}
\item{fixed.psi}{
Possible \emph{fixed} breakpoint values to be accounted for \emph{in addition} to those being estimated. If \code{by} has been specified and \code{fixed.psi} is a vector, the same \code{fixed.psi} applies to all categories of the factor \code{by}. Otherwise \code{fixed.psi} can be a list, wherein the components refer to the segmented relationship within the levels of \code{by}. \code{slope} and \code{plot.segmented} will account for them correctly.
}
\item{by}{
A possible \emph{factor} meaning an interaction with the segmented term \code{x}. Hence, if specified, a different segmented relationship is fitted within each category of \code{by}.
}
\item{f.x}{
an optional function meaning a function to apply to the covariate before fitting.
}
}
\details{
The function is used within \code{\link{segreg}} and \code{stepreg} to 'build' information about the segmented relationships to fit.
Note that, when a grouping variable has been specified in \code{by}, \code{npsi} can be specified as a vector, and \code{est}, if specified, should be a list.
}
\value{
The function simply returns the covariate with added attributes relevant to segmented term
}
%\references{
%% ~put references to the literature/web site here ~
%}
\author{
Vito Muggeo
}
\note{
If any value is provided in \code{fix.psi}, the corresponding slope difference coefficient will be labelled by \code{*.fixed.*}. The \code{\link{slope}} function will compute the 'right' slopes also accounting for the fixed breakpoints.
}
%% ~Make other sections like Warning with \section{Warning }{....} ~
\seealso{
\code{\link{segreg}}
}
\examples{
##see ?segreg
}
% Add one or more standard keywords, see file 'KEYWORDS' in the
% R documentation directory (show via RShowDoc("KEYWORDS")):
% \keyword{ ~kwd1 }
% \keyword{ ~kwd2 }
% Use only one keyword per line.
% For non-standard keywords, use \concept instead of \keyword:
% \concept{ ~cpt1 }
% \concept{ ~cpt2 }
% Use only one concept per line.
|