Join tables based on first column or first row
cjoin_IQRtable.Rd
The function is a mixture of "base::cbind"/"base::rbind" and "dplyr::full_join". It attempts to combine matrices by columns or rows using the first column or row as a reference not repeating it each time.
cjoin_IQRtable(..., na.char = "--")
rjoin_IQRtable(..., na.char = "--")
Arguments
Value
Matrix, the composition of the single tables.
See also
Other IQR Table:
IQRtable()
,
as.data.frame.IQRtable()
,
as_IQRtable()
,
composeByRule_IQRtable()
,
compose_IQRtable()
Other IQR Table:
IQRtable()
,
as.data.frame.IQRtable()
,
as_IQRtable()
,
composeByRule_IQRtable()
,
compose_IQRtable()
Examples
if (FALSE) { # \dontrun{
M <- as_IQRtable(
data.frame(
parameter = c("a", "b"),
value = c(1.35, 23.1)
)
)
N <- as_IQRtable(
data.frame(
parameter = c("a", "c"),
value = c(1.73, 0.05)
)
)
cjoin_IQRtable(M, N)
rjoin_IQRtable(M, N)
} # }