bergant / airtabler

R interface to the Airtable API
Other
91 stars 16 forks source link

data.table dependency? #9

Open cjcarlson opened 3 years ago

cjcarlson commented 3 years ago

select_all() is returning Error in.rowNamesDF<-(x, value = value) : duplicate ‘row.names’ are not allowed - any idea how to fix this? seems to be an issue with how data.table works, and can be easily fixed by ", row.names=NULL" argument where relevant

https://stackoverflow.com/questions/8854046/duplicate-row-names-are-not-allowed-error

gijom33 commented 3 years ago

Experiencing the exact same issue here. I have not found a workaround yet (except listing the columns I am interested in but this is not scaleable).

gijom33 commented 3 years ago

Well, using dplyr's bind_rows(x) instead of do.call(rbind, x) did the trick for me...

mawhal commented 2 years ago

Is there a solution to this yet? How can I implement these fixes within the call to select_all()?