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
I have an excel file that's generated by an application that reads data off an instrument. It looks like read_excel is not able to successfully parse excel files exported by the application, returning just an empty tibble:
library(readxl)
data<- read_xls("2020-06-02_02-39-48_Quantitation_Summary.xls")
#> data ## A tibble: 0 x 0
In case it's helpful, it looks like pandas is able to process it ok, but with an warning:
In [3]: df = pd.read_excel("2020-06-02_02-39-48_Quantitation_Summary.xls")
WARNING *** file size (8461) not 512 + multiple of sector size (512)
In [4]: df.head()
Out[4]:
Unnamed: 0 Well Fluor Content Sample C(t) SQ
0 NaN A03 SYBR Unkn-01 H2O 62.048927 NaN
1 NaN A04 SYBR Unkn-05 H2O 68.577469 NaN
2 NaN A09 SYBR NTC-09 H2O 60.147350 NaN
3 NaN A10 SYBR NTC-13 H2O 85.389522 NaN
4 NaN B03 SYBR Unkn-02 CVS 106.360012 NaN
Changes:
- Allow truncated XLS files #55#60#76tidyverse/readxl#619
- Fix long-standing "extra column" bug #73
- Support for RSTRING records (rich-text cells in older BIFF5 files)
tidyverse/readxl#611
Minimum version updated in bl3 due to header changes.
I have an excel file that's generated by an application that reads data off an instrument. It looks like read_excel is not able to successfully parse excel files exported by the application, returning just an empty tibble:
In case it's helpful, it looks like pandas is able to process it ok, but with an warning:
Github doesn't like
.xls
files attached, so I zipped it up:2020-06-02_02-39-48_Quantitation_Summary.xls.zip
The text was updated successfully, but these errors were encountered: