md.tableWriter.VEC.w.names: md.tableWriter.VEC.w.names

Description Usage Arguments Examples

Description

Take an R vector with 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.VEC.w.names(
  NamedVector,
  FullPath = ww.set.path_of_report(),
  percentify = FALSE,
  title_of_table = NA,
  print2screen = FALSE,
  WriteOut = FALSE
)

Arguments

NamedVector

A vector for the table body, with names as table header.

FullPath

Full path to the file.

percentify

Format numbers 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
x = -1:2; names(x) = LETTERS[1:4]
md.tableWriter.VEC.w.names (NamedVector = x, percentify = FALSE, title_of_table = NA)

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