I have a Plot in a cell of a Mathematica notebook. The Plot was made with data that I no longer have. I want to modify the label of one of the axes, without running the plot command again (since I don't have the data). How can I do this?
Asked
Active
Viewed 91 times
0
1 Answers
3
You can use Show to change options in existing graphics.
plot = Plot[Sin[x],{x,0,10}, AxesLabel -> {x,y}]

Show[plot, AxesLabel -> {x, Sin[x]}]

Modifying the actual contents is more difficult and involves examining the contents of the Graphics expression.
Szabolcs
- 234,956
- 30
- 623
- 1,263
// InputFormand then evaluate, it should give you aGraphicsexpression that you can modify. – C. E. Mar 11 '15 at 18:13