md.tableWriter.DF.w.dimnames: md.tableWriter.DF.w.dimnames

Description Usage Arguments Examples

Description

Take an R data frame with row- and column- names, parse a markdown table from it, and write it to the markdown report, set by "path_of_report".

Usage

1
2
3
4
5
6
7
8
md.tableWriter.DF.w.dimnames(
  df,
  FullPath = ww.set.path_of_report(),
  percentify = FALSE,
  title_of_table = NA,
  print2screen = FALSE,
  WriteOut = FALSE
)

Arguments

df

Input data frame to be plotted

FullPath

Full path to the file.

percentify

Format numbers between 0-1 to percentages 0-100.

title_of_table

Title above the table (in the markdown report).

print2screen

Print the markdown formatted table to the sceen.

WriteOut

Write the table into a TSV file.

Examples

1
2
df = matrix(1:9,3); rownames(df) = 6:8;rownames(df) = 9:11;
md.tableWriter.DF.w.dimnames (df, percentify = FALSE, title_of_table = NA)

vertesy/MarkdownReportsDev documentation built on Nov. 15, 2021, 9:59 a.m.