I'm using read_excel but as a internal function in my package, and I need to extract some specific rows from a excel document. Problem is that when using the package interactively I get:
New names:
* `` -> `..1`
For the purpose of my package this is confusing. I know I can suppress the output message using suppressMessages(), but I imagine there should be a non verbose option on read_excel (my guess is something about .name_repair).
Yes, this works. I don't know if it this is a better workaround than using supressMessages(). I'm still surprised that it doesn't have an option to keep it quiet.