R-nvim / R.nvim

Neovim plugin to edit R files
GNU General Public License v3.0
128 stars 15 forks source link

Inbuilt data not found #114

Closed samtrek closed 2 months ago

samtrek commented 2 months ago

Inbuilt datasets like airquality and cars are no longer accessible, this may affect trying out new packages that make use of such data set as source of data., I also do not know if this is applicable to data that comes with other installed packages. A simple plot(cars) or print(cars) gives this error

Error: object cars is not found

PMassicotte commented 2 months ago

This works fine on my side. Also, I do not think it is related to R-nvim. If you have an R terminal open, you should have access to anything loaded, regardless if inside nvim or a terminal.

samtrek commented 2 months ago

Resolved, called some packages at launch in my .Rprofile, which did not include datasets, after removing .Rprofile everything is now back to normal, thanks for the speedy reply.