DiscretePlot[x,{x,0,10,1}]
What if I want to have a nonlinear x sampling, like one going denser as x->10?
You can give a list of values of x where to draw the points:
x
DiscretePlot[x, {x, Log[Range[E, E^10, 300 E]]}, PlotRange -> {{0, 10}, {0, 10}}]
Thank you. That's cool.