omitting output lines in result

Issue #544 resolved
jay created an issue

Sir,

I attempted to get the dccm matrix of the 1st structure of an enma object printed out by the command,

print(cij$all.dccm[,,1])

The output should be a 690X690 matrix. however it truncates the output beyond 144 rows, saying,

[ reached getOption("max.print") -- omitted 546 rows ]

How to print the whole matrix ?

end of output :

[130,] -0.388935130 -0.420714306 -0.4443931442 -0.4502792634 -0.4740497497 [131,] -0.444958611 -0.474379767 -0.5048635191 -0.5099914696 -0.5316256152 [132,] -0.518818160 -0.536881146 -0.5526338661 -0.5312782996 -0.5323469925 [133,] -0.522681635 -0.530551022 -0.5405035327 -0.5097990045 -0.5066213804 [134,] -0.496992848 -0.523161126 -0.5519509650 -0.5497073802 -0.5604074065 [135,] -0.531971039 -0.566475909 -0.5988063133 -0.6002736840 -0.6040403261 [136,] -0.569513937 -0.585333222 -0.5993050111 -0.5728760389 -0.5577601095 [137,] -0.548584690 -0.568089707 -0.5891810583 -0.5738263879 -0.5667091110 [138,] -0.532520222 -0.571494336 -0.6102829467 -0.6211778007 -0.6228455372 [139,] -0.573928989 -0.605894713 -0.6353230619 -0.6308228757 -0.6149183400 [140,] -0.582006476 -0.597418628 -0.6135714941 -0.5901111495 -0.5647002322 [141,] -0.563071010 -0.577495364 -0.5969810638 -0.5790093591 -0.5463667286 [142,] -0.520782766 -0.552263662 -0.5873067254 -0.5941762041 -0.5718352999 [143,] -0.518232734 -0.548617431 -0.5796275778 -0.5822397845 -0.5492774066 [144,] -0.484081439 -0.538349956 -0.5884203021 -0.6205303736 -0.6047186132 [ reached getOption("max.print") -- omitted 546 rows ] =====================================================

Comments (3)

  1. Xinqiu Yao

    As it indicated from the bottom of the output, you can set max.print argument to control the number of lines to print. For example, options(max.print=1000). But I don't see the point why you want to do it...

  2. Log in to comment