-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathfit_and_predict.Rd
36 lines (31 loc) · 975 Bytes
/
fit_and_predict.Rd
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
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/iptw.R
\name{fit_and_predict}
\alias{fit_and_predict}
\title{Calculate predicted value for weights.}
\usage{
fit_and_predict(
data,
a_bar = NULL,
exposure.var,
family,
mod,
is_aform = FALSE
)
}
\arguments{
\item{data}{Data to be used to fit model.}
\item{a_bar}{Intervention value on exposure.}
\item{exposure.var}{A vector of exposure variables, including lagged exposure variables.}
\item{family}{Model link function, \code{gussian},\code{binomial} and \code{multinomial}.
For multinomial model, \code{\link[nnet]{multinom}} will be sued for model fitting. And
\code{\link[stats]{glm}} for \code{gussian} and \code{binomial} link funciton model.}
\item{mod}{A formula string.}
\item{is_aform}{Indication of model for exposure or censoring, defualt is for mediator model.}
}
\value{
Returns a predicted numerical vector.
}
\description{
Calculate predicted value for weights.
}