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
read_excel() outputs unexpected blank lines to console when progress argument evaluates to TRUE and width option is greater than terminal width.
foo<- read_excel("./Book1.xlsx") # works as expected
options(width=140) # must be greater than console widthfoo<- read_excel("./Book1.xlsx") # outputs three unexpected blank linesfoo<- read_excel("./Book1.xlsx", progress=FALSE) # still works as expected
The text was updated successfully, but these errors were encountered:
read_excel() outputs unexpected blank lines to console when progress argument evaluates to TRUE and width option is greater than terminal width.
The text was updated successfully, but these errors were encountered: