h_xticks | R Documentation |
Calculate the positions of ticks on the x-axis. However, if xticks
already
exists it is kept as is. It is based on the same function ggplot2
relies on,
and is required in the graphic and the patient-at-risk annotation table.
h_xticks(data, xticks = NULL, max_time = NULL)
data |
( |
xticks |
( |
max_time |
( |
A vector of positions to use for x-axis ticks on a ggplot
object.
library(dplyr)
library(survival)
data <- tern_ex_adtte %>%
filter(PARAMCD == "OS") %>%
survfit(formula = Surv(AVAL, 1 - CNSR) ~ ARMCD, data = .) %>%
h_data_plot()
h_xticks(data)
h_xticks(data, xticks = seq(0, 3000, 500))
h_xticks(data, xticks = 500)
h_xticks(data, xticks = 500, max_time = 6000)
h_xticks(data, xticks = c(0, 500), max_time = 300)
h_xticks(data, xticks = 500, max_time = 300)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.