How can a user interactively change one aspect (e.g., orientation or length of a line) on a 2D plot?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
The rpanel package has worked for me.
|
|||
|
|
|
latticist and playwith are offering the interactive functionality for R's statistical plots. For modifying specific details you can save the graph in SVG format and edit it in inkscape. |
|||
|
|
|
The tkexamp function in the TeachingDemos package helps you to create a graph with controls to change various options in the plot, there are several examples on the help page that can be run to see how it works. The TkIdentify function in the same package allows you to drag labels (along with lines pointing from points to labels) to a desired position, you could start with the code from that function (all R, nothing compiled) as a basis for your own dynamic plot that would allow dragging a line. |
|||
|
|