Nothing
ChronochRt offers an easy way to draw chronological charts from tables. It aims to provide an intuitive environment for anyone new to R and includes ggplot2 geoms and theme for chronological charts.
You can install the released version of ChronochRt from CRAN with:
install.packages("chronochrt")
or install the development version with the newest bugfixes and features from gitlab with:
devtools::install_gitlab("archaeothommy/chronochrt")
Please help us to improve ChronochRt by filing observed bugs as an issue here.
Is there a feature missing? Please let us know here.
library(ChronochRt)
data <- add_chron(region = "A",
name = c("A", "A1", "A2", "B"),
start = c(-200, -200, 0, -100),
end = c(200, 0, 200, 100),
level = c(1,2,2,1),
add = FALSE,
new_table = TRUE)
plot_chronochrt(data)
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.