What is the difference between PlotRange -> Full and PlotRange -> All in a Plot, ListPlot, ContourPlot, etc.? Or in Graphics? Here is what the Documentation page for PlotRange says under the Details section:
PlotRange -> All"all points are included"
PlotRange -> Full"include full range of original data"
The difference is not clear to me. In the examples I tried both options have the same effect.


Show[ListPlot[{1, 3}], ListPlot[{6, 5}], PlotRange -> All]works, but it no longer if you replaceAllwithFull. $\endgroup$