You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For some reason I tricked myself into thinking options(repr.matrix.max.cols=Inf) didn't work, and I tried options(repr.matrix.max.cols=.Machine$integer.max) instead, this causes the following error when showing any object:
# Warning message in cols + 1L:
# “NAs produced by integer overflow”
# ERROR while rich displaying an object: Error in rep("---", out_cols): invalid 'times' argument
Probably we should just interpret .Machine$integer.max to be Inf and be done with it :)
The text was updated successfully, but these errors were encountered:
For some reason I tricked myself into thinking
options(repr.matrix.max.cols=Inf)
didn't work, and I triedoptions(repr.matrix.max.cols=.Machine$integer.max)
instead, this causes the following error when showing any object:Probably we should just interpret
.Machine$integer.max
to beInf
and be done with it :)The text was updated successfully, but these errors were encountered: