We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
follow up #14
Update the following example with a table
library(tern.gee) fev_data$FEV1_BINARY <- as.integer(fev_data$FEV1 > 30) fit <- fit_gee( vars = list( response = "FEV1_BINARY", covariates = c("RACE", "SEX"), arm = "ARMCD", id = "USUBJID", visit = "AVISIT" ), data = fev_data )
The text was updated successfully, but these errors were encountered:
Sorry, something went wrong.
use the following example
#' library(dplyr) #' #' df <- fev_data %>% #' mutate(AVAL = as.integer(fev_data$FEV1 > 30)) #' df_counts <- df %>% #' select(USUBJID, ARMCD) %>% #' unique() #' #' lsmeans_df <- lsmeans(fit_gee(vars = vars_gee(arm = "ARMCD"), data = df)) #' basic_table() %>% #' split_cols_by("ARMCD") %>% #' add_colcounts() %>% #' summarize_gee_logistic( #' .in_ref_col = FALSE #' ) %>% #' build_table(lsmeans_df, alt_counts_df = df_counts)
21 Update README with example (#23)
774e97f
Closes #21
edelarua
No branches or pull requests
follow up #14
Update the following example with a table
The text was updated successfully, but these errors were encountered: