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
This can be fixed by implementing pillar::format_glimpse(), which should be pretty easy. Basically:
if vector-like rvar, return character vector of elements converted to a display format. Some variant of format.rvar() should work
if array-like (2 or more dims), return an abbreviation similar to what matrices / arrays do; e.g. pillar::format_glimpse(matrix(1:10)) returns "<matrix[10 x 1]>"
The text was updated successfully, but these errors were encountered:
Currently
pillar::glimpse()
fails if a data frame has an rvar in it:This can be fixed by implementing
pillar::format_glimpse()
, which should be pretty easy. Basically:format.rvar()
should workpillar::format_glimpse(matrix(1:10))
returns"<matrix[10 x 1]>"
The text was updated successfully, but these errors were encountered: