New answers tagged editing
1
You can copy and paste your graphic, add /. {"oldName1" -> "newName1", "oldName2" -> "newName2"} after it, and evaluate :
2
Very straightforward:
plot = Plot[Sin[x], {x, 0, 2 Pi}];
plot /. (AxesLabel -> _) -> (AxesLabel -> {"x", "y"})
0
Is this what you want?
g = Plot[Sin[x], {x, 0, 2 \[Pi]}]
Graphics[Line@Cases[g, Line[x__] :> x, \[Infinity]], PlotLabel -> "New labels", Options[g]]
Top 50 recent answers are included


