Displaying 1 result from an estimated 1 matches for "dnormal".
Did you mean:
normal
2007 Nov 12
1
how to run a linux syntax within an R script?
Is it possible to run a linux syntax (i.e. like i was at a linux
terminal) from an R code?
Just one example:
Let say that I have an R code with
hist(rnorm(100))
dev.copy2eps(file="Dnormal.eps")
and then within the same R code, i want to convert the file
'Dnormal.eps' to 'Dnormal.pdf'. This can be achieved using at the linux
terminal
%epstopdf Dnormal.eps
but i do not know how to include this within the R script, any ideas?
I know that i can also save the pl...