开发者

Is there function for displaying text in R window?

开发者 https://www.devze.com 2023-03-10 08:20 出处:网络
Is there function for displa开发者_开发知识库ying text in R window ? and how to display text written with HTML formating ?See https://www.rdocumentation.org/packages/gplots/topics/textplot

Is there function for displa开发者_开发知识库ying text in R window ? and how to display text written with HTML formating ?


See https://www.rdocumentation.org/packages/gplots/topics/textplot

As for HTML, I'm not sure how that makes sense--is your R window a web browser?


Maybe file.show?

Display one or more (plain) text files, in a platform specific way, typically via a ‘pager’ (help(file.show)).


It isn't clear what you mean by "R window" but print will print text:

print("Hello World")

or

x <- "Hello World"
print(x)

gives

[1] Hello World

Documentation

0

精彩评论

暂无评论...
验证码 换一张
取 消