I am using the Graph package in R for maxclique analysis of 5461 items.
The final output item which I get is very long, so I am getting the following warning:
reached
getOption("max.print")— omitted 475569 rows
Can somebody please provide me the pointers with how to increase the limit
for max.print.
Use the
optionscommand, e.g.options(max.print=1000000).See
?options: