search for: var_01

Displaying 1 result from an estimated 1 matches for "var_01".

Did you mean: var001
2012 Jan 03
0
[newbie] pager for large matrix?
...h for answers to this sort of question, please lemme know.) I'm new to R, though not to computing. I've been using linux for many years (and before that cygwin) and am very fond of `less` for paging output. I'm using R package=ncdf to load parts of a large netCDF file, e.g., > > var_01 <- get.var.ncdf(filedata, var, start=c(1,1,1,1), count=c(459,299,1,1)) > > class(var_01) > [1] "matrix" > > dim(var_01) > [1] 459 299 I'd like to be able to view values directly (more on why and how follows), but when I do > > print(var_01) I get output l...