R default output uses pager? -
i working large data matrices , of time have through data in particular column (for pca).
i've grown love > page(bigmatrix, method="print")
. however, it's troublesome me because have type every time on console. possible me tell r wrap console outputs use page
default?
i think easist option write function , put in startup .rprofile.
use p(bigmatrix)
.
i tested putting following @ end of .rprofile file (located in home directory - in windows documents directory associated user name). worked fine.
p <- function (x){ page(x, method = "print") }
Comments
Post a Comment