I am using Visual Studio Code with the R extension, but I’m having trouble getting my data to show up in the global environment. When I run a script that creates a data frame, I can see the output in the console, but the data frame is not visible in the global environment tab. issues
I also get the following error messages in the Problems panel:
- Cannot register 'r.rpath.windows'. This property is already registered.
- Cannot register 'r.rpath.mac'. This property is already registered.
- Cannot register 'r.rpath.linux'. This property is already registered.
Here is the content of my settings.json file:
- "r.rpath.mac": "/usr/local/bin/r",
- "r.bracketedPaste": true,
- "r.rterm.mac": "/Library/Frameworks/Python.framework/Versions/3.11/bin/radian",
- "r.plot.useHttpgd": true,
- "r.workspaceViewer.showObjectSize": true
Can anyone help me fix this issue? Thanks!