In here, I have asked a question about the use of Tick (FrameTicks).
An extension to the question is,
x1 = Range[0, 10, 1];
y1 = Sin[x1];
(* This gives the automatic points of x-axis values,2,4,6,8 *)
ListLinePlot[Thread[{x1, y1}]]
(* This takes too many values for x-axis (bottom one) *)
ListLinePlot[
Thread[{x1, y1}],
FrameTicks -> {
{Automatic, Automatic},
{Thread[{x1, Exp[x1] // N}], x1}
},
Mesh -> Full,
Frame -> True
]
How do I use the automatic ticks (2,4,6,8) and Exp[] those values instead of the whole list of xlst?


Exp[], the values a "longer", they occupy more space. So I want to find a lazy way to deal with it. For the actual problem, the y values come from NMaximize, so it's a trial and error process for plot. (to determine the ranges of interest). – Chen Stats Yu Dec 09 '14 at 21:03