Re: [R] Editing figure without re-running the plotting code?

2013-03-11 Thread Sherri Heck
Thanks to all for your input and thorough explanations. I will follow up on your suggestions and see where that takes me. Regards, Sherri On Mon, Mar 11, 2013 at 2:02 AM, Bert Gunter wrote: > Jim: > > Whoaaa... this is only true for base graphics! > > For grid graphics -- on which both latti

Re: [R] Editing figure without re-running the plotting code?

2013-03-10 Thread Bert Gunter
Jim: Whoaaa... this is only true for base graphics! For grid graphics -- on which both lattice and ggplot are built -- there is a defined object structure for graphics complete with extensive editing capabilities. See, e.g. ?grid.edit in the grid package. Both lattice and ggplot can and do take

Re: [R] Editing figure without re-running the plotting code?

2013-03-10 Thread Jim Lemon
On 03/11/2013 02:19 AM, Sherri Heck wrote: Dear all, I am curious if anyone knows of a command/program that would enable one to edit a figure in R once it is created (akin to Matlab). Currently, if I need to make any changes to the figure I do so and then have to run the plotting portion of the

Re: [R] Editing figure without re-running the plotting code?

2013-03-10 Thread Jeff Newmiller
The normal method is to rerun the code. If you use the ggplot2 library you can store plots in variables and modify them, but you still have to print them again when you want to see the results. --- Jeff Newmiller

[R] Editing figure without re-running the plotting code?

2013-03-10 Thread Sherri Heck
Dear all, I am curious if anyone knows of a command/program that would enable one to edit a figure in R once it is created (akin to Matlab). Currently, if I need to make any changes to the figure I do so and then have to run the plotting portion of the code again. I have searched the R site mail