I'm having problems with getting coordinates out ofa ListLogLogPlot
I basically plotted a list, then selected data points on the graph, moved these points around, and now I need to get the coordinates of the moved points.
Any ideas?

|
I'm having problems with getting coordinates out ofa I basically plotted a list, then selected data points on the graph, moved these points around, and now I need to get the coordinates of the moved points. Any ideas?
|
||||
| show 1 more comment |
|
This one works for both Log and LogLog Plots. Create your plot:
Edit it. Then paste it here
|
|||||||||||||||
|
|
The simple way is as follows. Take your new plot as it is in the notebook after you introduced the changes, mark it by clicking and copy it. Then type FullForm[] in a new cell and insert the copied graphics between the square brackets. Evaluate it. The result will be rather lengthily. However you will be able to find there a Line statement somewhere inside this lengthily expression. The Line statement is wrapped around a list. Copy this list. Done. |
|||
|
|
Cases[ListPlot[{{0, Pi}, {1, E}}], Point[pts__] :> pts, Infinity]? – b.gatessucks Feb 7 at 9:24newPlot= copy/paste hereand then the above onnewPlot. – b.gatessucks Feb 7 at 10:01Cases[(paste plot here), Point[pts__] :> Exp[pts], -1]. – Simon Woods Feb 7 at 12:29