View source: R/merge_flextable.R
merge_none | R Documentation |
Delete all merging informations from a flextable.
merge_none(x, part = "all")
x |
|
part |
partname of the table where merge has to be done. |
Other flextable merging function:
merge_at()
,
merge_h()
,
merge_h_range()
,
merge_v()
typology <- data.frame(
col_keys = c("Sepal.Length", "Sepal.Width", "Petal.Length", "Petal.Width", "Species"),
what = c("Sepal", "Sepal", "Petal", "Petal", "Species"),
measure = c("Length", "Width", "Length", "Width", "Species"),
stringsAsFactors = FALSE
)
ft <- flextable(head(iris))
ft <- set_header_df(ft, mapping = typology, key = "col_keys")
ft <- merge_v(ft, j = c("Species"))
ft <- theme_tron_legacy(merge_none(ft))
ft
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.