message_df {autonomics} | R Documentation |
message dataframe using sprintf syntax. Use place holder '
message_df(format_string, x)
format_string |
sprintf style format string |
x |
data.frame |
nothing returned
x <- data.frame(feature_id = c('F001', 'F002'), symbol = c('FEAT1', 'FEAT2')) message_df('\t%s', x) x <- c(rep('PASS', 25), rep('FAIL', 25)) message_df(format_string = '%s', table(x))