tidyverse/readxl

Unexpected output when width option is greater than terminal width

jfin4 opened this issue · 0 comments

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 width
foo <- read_excel("./Book1.xlsx") # outputs three unexpected blank lines
foo <- read_excel("./Book1.xlsx", progress = FALSE) # still works as expected