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
The filename in the code is CamelCase but in the source data it's all snake_case, so it creates an error.
Additionally, I couldn't read the file without installing a few things. See here for the type of error I was getting.
Basically, the engine had to be specified. The line that works for me is:
# root_ path was specified to build paths for the whole project
table_s1_df = pd.read_excel(f"{root_path}zenodo/MERFISH/raw_data/aau5324_moffitt_table-s1.xlsx", skiprows=[0,1], header=None, engine='openpyxl')
The text was updated successfully, but these errors were encountered:
It would be nice to have the link to the table, at least as a comment on the line that will try to read the data.
The filename in the code is
CamelCase
but in the source data it's allsnake_case
, so it creates an error.Additionally, I couldn't read the file without installing a few things. See here for the type of error I was getting.
Basically, the
engine
had to be specified. The line that works for me is:The text was updated successfully, but these errors were encountered: