How to delete a line drawn by function abline without changing the color to match background? Btw, I am using chart_Series for charting. It would be great to have xy lines (1 vertical and 1 horizontal) following the mouse movement. Pls help
|
closed as not a real question by csgillespie, Christian.K, Sacha Epskamp, Andrie, animuson Mar 21 '12 at 22:53
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.
|
You can't, R uses a "pen on paper" model for it's base graphics. Once you taint the "paper" (device) with any plotting object it is there for good. You need to redo the entire plot without the line in order to "remove" it. Painting over the line with the same data in the background colour just fakes deletion; as far as R is concerned you now have two lines, one on top of another. |
|||||
|
|
My understanding of the question is that you want an interactive plot. There are number of packages that allow interactive plots. The one you can use with plot functions from other packages and from base is
Note this requires Gtk+ installed on you computer. You may also want to create your own widget using
Most interactive plotting use their own plotting functions and may not be compatible with chart_Series.
You may also find base R functions useful
|
||||
|
|