Hi guys, I'm very new to R programming, sorry if my question is trivial, but I am having problems to import the dataset by selecting "From text (readr)". I cannot access the data.
I am using the latest version for R and RStudio, at Windows 7
This is what I get after importing the data:
unable to open 'C:Users/AndrÃ/Documents/R/win-library/4.0/rlang/R/rlang.rdb': No such file or directory
I couldn't fix this problem till now, if someone can help I will appreciate, thank you all!
It looks like the error you're seeing is not necessarily related to the data import. I would suggest reinstalling the rlang package and seeing if that fixes the error. To do that, first restart RStudio and then run:
install.packages("rlang")
Hopefully that fixes the problem, and if not, you can post any error messages you receive here.
This could also be a problem with the non ASCII characters in your windows user name, R has problems with that very often. I would recommend changing your user name or installing into the system level package library to avoid this kind of issues.
Hey guys, thanks for the reply
I already done reinsatlled the package a few times
And then I get the message that said "Rtools is required to build R packages but is not currently installed..."
But down this message it sains 'rlang' successfully unpacked...
Already changed my user name too, I looked at this answer for another issue, here at this forum and for that guy it worked, but not for me..
Have you got a different error message after the user name change? If you still get the same error message then the change has not being successful, also, have you tried simply installing into the system level package library?
The user name didn't change!
And sorry man, but what you mean by "installing into the system level package library"?
I tried trought the console and manually
R has two default locations for the package library, one is the user level library (where you were trying to install) and the other one is the system level library located at the installation folder, usually looks like this.
You've got to either use double backslashes \\ or forward slashes / for the path as explained by andresrcs above. Re-installing R & RStudio won't help you.