-
On a recent project where I was processing thousands of spreadsheets, I started with the workflow of |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
In the first instance, In particular, with the |
Beta Was this translation helpful? Give feedback.
In the first instance,
read_excel()
is performing its own minimal name repair while ingesting data. Due to the malformed and missing column names in the target spreadsheet, this caused a change in names from the raw data before it reachedclean_names
. Switching to.name_repair = janitor::make_clean_names
avoids this initial name repair performed byread_excel
.In particular, with the
clean_names
in a subsequent step I gotx2, x3, x4
for three missing column names, while with.name_repair = make_clean_names
I got the column namesx, x_2, x_3
.