How to change text font and size in R View()?

338 Views Asked by At

When I run

a <- data.frame(col1 = c(1,2,5,8,2,2), col2=c(34,5,64,54,23,3))
View(a)

I get a popup window with my data as I hope, but the font size and face are not good for me.

enter image description here

I have looked at the documentation for View() and dataentry. While it suggests I might change foreground or background colours in .Xresources, there is no mention of the font face or size setting.

Is there a way to set font face and size in the View() window?

I don't use Rstudio, instead I run R via Emacs + ESS on Linux. (Ubuntu 18.04.05 (LTS) with i3, X.Org version 1.19.6, with empty .Xresources.)

0

There are 0 best solutions below