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
repr::repr_text(matrix(nrow = 0, ncol = 100))
# Warning message:
# In cbind(parts$left, ellip_h, parts$right, deparse.level = 0L) :
# number of rows of result is not a multiple of vector length (arg 2)
Ditto
repr::repr_text(matrix(ncol = 0, nrow = 100))
# Warning message:
# In rbind(parts$upper, ellip_v, parts$lower, deparse.level = 0L) :
# number of columns of result is not a multiple of vector length (arg 2)
Ditto
The diagnosis is simple enough; here:
repr/R/repr_matrix_df.r
Lines 84 to 85 in 7f27d6a
rbind
/cbind
is combining 0-length input with length-1 input (ellip_v
/ellip_h
).I'm not 100% sure the correct behavior/best fix, however.
The text was updated successfully, but these errors were encountered: