ReporteRs (version 0.7.7)

spanFlexTableColumns: Span columns within rows

Description

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.

See Also

spanFlexTableRows, FlexTable

Examples

Run this code
#
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") )

Run the code above in your browser using DataCamp Workspace