If I am saving figures as PDF, is dpi still relevant? For example, in the following code
import pylab
pylab.savefig('./test_200.pdf', dpi = 200)
pylab.savefig('./test_2000.pdf', dpi = 2000)
does dpi make a difference?
To me it does not make a difference at least in resolution, I have zoomed in as much as I can and the two figures look the same
Is it possible that there are any underlying difference or simply no difference? Thank you in advance!

