Print Data
Prints a data object according to the specified size.
ULPrint(aData, nRows=10, nCols=10, Title="")
aData |
data |
nRows |
no. of rows to print |
nCols |
no. of cols to print |
Title |
title of output |
aData is printed according to nRows and nCols
Knut M. Wittkowski kmw@rockefeller.edu
matrixA <- matrix(1:100, nrow=100, ncol=100) ULPrint(matrixA) # [,1] [,2] [,3] [,4] [,5] [,6] [,7] [,8] [,9] [,10] # [1,] 1 1 1 1 1 1 1 1 1 1 # [2,] 2 2 2 2 2 2 2 2 2 2 # [3,] 3 3 3 3 3 3 3 3 3 3 # [4,] 4 4 4 4 4 4 4 4 4 4 # [5,] 5 5 5 5 5 5 5 5 5 5 # [6,] 6 6 6 6 6 6 6 6 6 6 # [7,] 7 7 7 7 7 7 7 7 7 7 # [8,] 8 8 8 8 8 8 8 8 8 8 # [9,] 9 9 9 9 9 9 9 9 9 9 # [10,] 10 10 10 10 10 10 10 10 10 10 # ...
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.