-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathrmst_single_arm.Rd
52 lines (48 loc) · 1.23 KB
/
rmst_single_arm.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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/rmst.R
\name{rmst_single_arm}
\alias{rmst_single_arm}
\title{Calculate RMST for a single cut-off time point}
\usage{
rmst_single_arm(
time_var,
event_var,
tau,
group_label = "Single Group",
alpha = 0.05
)
}
\arguments{
\item{time_var}{A numeric vector of follow up time.}
\item{event_var}{A numeric or integer vector of the status indicator;
0=alive 1=event.}
\item{tau}{A value of pre-defined cut-off time point.}
\item{group_label}{A character of customized treatment group name.}
\item{alpha}{A numeric value of the significant level for RMST
confidence interval. Default is 0.05.}
}
\value{
A data frame of
\itemize{
\item Cutoff time: same as \code{tau};
\item Group label: same as \code{group_label};
\item Estimated RMST;
\item Variance, standard error, and CIs of the estimated RMST;
\item Number of events.
}
}
\description{
Calculate RMST for a single cut-off time point
}
\examples{
data(ex1_delayed_effect)
data_single_arm <- ex1_delayed_effect[ex1_delayed_effect$trt == 1, ]
simtrial:::rmst_single_arm(
time_var = data_single_arm$month,
event_var = data_single_arm$evntd,
tau = 10,
group_label = "Treatment 1",
alpha = 0.05
)
}
\keyword{internal}