textcolor - Coloring output in R Language -
is there way can change output color in r.
let example
> y="red color" > z=5<3 need command print value of y in red color, and/or value of z in red. possible in simple way?
for general coloring of output there package called colorout. says in order change color of r output have rewrite outputing functions.
it not available on cran, can download , install github. load package library(colorout)
if want specific outputs colored (instead of r output) guess might try looking through source of colorout: https://github.com/jalvesaq/colorout/blob/master/r/colorout.r , writing own output function.
Comments
Post a Comment