This function plots the time evolution and does a longitudinal analysis of time dependent features. Features listed are fitted to the provided time model (mixed effect model) with a generalized least squares (GLS) procedure. As output, it returns the coefficients, standard errors, t-values, and corresponding p-values.
timeSerieAnalysis(variableList,
baseModel,
data,
timevar = "time",
contime = ".",
Outcome = ".",
...,
description = ".",
Ptoshow = c(1),
plegend = c("p"),
timesign = "-",
catgo.names = c("Control", "Case")
)
A data frame with two columns. The first one must have the names of the candidate variables and the other one the description of such variables
A string of the type "1 + var1 + var2" that defines the model to which variables will be fitted
A data frame where all variables are stored in different columns
The name of the column in data
that stores the visit ID
The name of the column in data
that stores the continuous time (e.g. days or months) that has elapsed since the baseline visit
The name of the column in data
that stores an optional binary outcome that may be used to show the stratified analysis
The name of the column in variableList
that stores the variable description
Index of the p-values to be shown in the plot
Legend of the p-values to be shown in the plot
The direction of the arrow of time
The legends of the binary categories
Additional parameters to be passed to the gls
function
A matrix with the coefficients of the GLS fitting
A matrix with the standardized error of each coefficient
A matrix with the t-value of each coefficient
A matrix with the p-value of each coefficient
The root-mean-square error of the fitting
This function will plot the evolution of the mean value of the listed variables with its corresponding error bars. Then, it will fit the data to the provided time model with a GLS procedure and it will plot the fitted values. If a binary variable was provided, the plots will contain the case and control data. As output, the function will return the model coefficients and their corresponding t-values, and the standard errors and their associated p-values.