-
-
Notifications
You must be signed in to change notification settings - Fork 29
Open
Labels
Description
What happened?
Hello,
The axis for the plot and table are aligned when no xticks are specified as shown below:
library(dplyr)
library(tern)
library(ggplot2)
df <- tern_ex_adtte %>%
filter(PARAMCD == "OS") %>%
mutate(is_event = CNSR == 0)
variables <- list(tte = "AVAL", is_event = "is_event", arm = "ARMCD")
g_km(df = df, variables = variables)
However, when the xticks are specified, the plot and table are no longer aligned. Please can you look into this?
g_km(df = df, variables = variables, xticks = c(1000, 2000))
Thank you.
sessionInfo()
Relevant log output
Code of Conduct
- I agree to follow this project's Code of Conduct.
Contribution Guidelines
- I agree to follow this project's Contribution Guidelines.
Security Policy
- I agree to follow this project's Security Policy.