I have a dataset that I exported from Tableau that I am now trying to import into R.
I am getting the following error message: Error in make.names(col.names, unique = TRUE) : invalid multibyte string at 'D'
When I open my data in a text editor (sublime text), it looks like this:
Date hour minute region amount
March 29th, 2016 2 43 KY 4
March 29th, 2016 2 58 CA 30
The headers are delineated by tabs.
I've tried saving it with UTF-8 encoding, but R is still not able to read it. Any ideas?
Thanks!