spanFlexTableColumns
From ReporteRs v0.8.8
by David Gohel
Span columns within rows
Span columns within rows.
Usage
spanFlexTableColumns(object, i, from, to, runs)
Arguments
- object
a
FlexTable
object- i
vector (integer index, row.names values or boolean vector) for rows selection.
- from
index of the first column to span (its content will be the visible one).
- to
index of the last column to span.
- runs
a vector of size
numcol
of FlexTable. If provided, successive runs of equal values will indicate to merge corresponding columns.
Note
Overlappings of horizontally merged cells and vertically merged cells are forbidden.
See Also
Examples
# NOT RUN {
mydata = iris[46:55, ]
MyFTable <- FlexTable( data = mydata )
# merge columns 2 to 4 in line 3
MyFTable <- spanFlexTableColumns( MyFTable, i = 2, from = 2, to = 4 )
# merge cells in line 4 when successive values of
# a given character vector are identical. Note
# the character vector length is the same
# than the number of columns of the FlexTable.
MyFTable <- spanFlexTableColumns( MyFTable, i = 4,
runs = c( "a", "b", "b", "c", "d") )
# }
Community examples
Looks like there are no examples yet.