Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

Tags:

r

readxl

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")
like image 708
Stupid_Intern Avatar asked Mar 16 '19 13:03

Stupid_Intern


1 Answers

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.

like image 71
Santiago Capobianco Avatar answered Sep 29 '22 17:09

Santiago Capobianco