wrchat: Write Character to Terminal at Specified Location
Description
Move cursor to specified location in the terminal screen, then print the supplied character. This function will only work in terminal, not the RStudio Console or R GUI.
Usage
wrchat(row, col, chr, ...)
Arguments
row
row in which character is printed. If length of row is greater than one, the second value replaces col.
col
column in which character is printed
chr
character to be printed to the Console
...
parameters that are passed to style(), including the foreground color fg, background color bg, and attribute attr
Value
NULL
Details
The coordinates are given in matrix notation: (row, column), with the top-left corner of the screen being (1,1).