New names: * `` -> `..18` message in R console

Stupid_Intern picture Stupid_Intern · Mar 16, 2019 · Viewed 10.3k times · Source

I ran a Rshiny app and it works as expected but in console I get the following message:

New names:
* `` -> `..18`

what does it mean?

It occurs when I try to do this

> data1<-read_excel("CUMMULATIVE COLLECTION POS_UPLOAD.xls")
New names:
* `` -> `..18`

When I do the same operation again it doesn't gives the message

> data2<-read_excel("DATA.xlsx")

Answer

Santiago Capobianco picture Santiago Capobianco · Mar 16, 2019

The message is telling you that some of the columns have no names and its giving them one. The second excel simply must have all the column names defined. It also appears to me since the last update of the readxl package. Worth noting that the format of the created names have change, wich force me to charge previous codes.