-
Notifications
You must be signed in to change notification settings - Fork 269
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
R Support #118
Comments
@cogiforest added filed based runs for R in #114. I haven't pushed a release yet, but I can do that today. Does the selection based run with |
As for keeping a connection open, we don't have any amount of REPL handling. Everything is a one-shot. I really need to re-think how to handle this, as I see Atom as being a great IDE playground where your plots can appear right in your editor (similar to RStudio, IPython notebook). |
If I use the selection based run suggested, all of my lines end up being ignored: ARGUMENT '<beautiful R code here>' __ignored__ |
What version of R are you using? That may be why. Given that Atom can handle images, markdown, and other types of dynamic content there are probably some really cool things that can be done with regard to R integration. I'm not sure if it's something that should be pursued here. |
|
Finally pushed a release with R support but it only works for file based runs. Feel free to submit a PR to get selection mode working! |
Has anyone looked into adding R Support? Not sure how feasible it would be. Here is what I came up with:
I guess the problem is when working with R, you generally want to be able to keep an open connection, and RScript will close it when the command or file is done executing. A better alternative would probably be do open an R session, and pipe commands in. Not sure how to go about doing that, or if it is possible under atom-script.
The text was updated successfully, but these errors were encountered: