openfile | R Documentation |
Open a file using [base::system() and "open"
(well, actually "start"
on Linux).
openfile(file)
file |
File name (character string) |
I'd thought that to open a file you'd use open
in
MacOS and start
in Windows, but
system("start myfile.pdf")
doesn't work in Windows, and
rather system("open myfile.pdf")
does, so here we're
just using open
, except on Linux where at least on my
system, you can use "start"
.
None.
## Not run: openfile("myplot.pdf")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.