ListLogPlot
[{$y_1$, $y_2$, ...}]ListLogPlot
[{{$x_1$, $y_1$}, {$x_2$, $y_2$}, ...}]ListLogPlot
[{$list_1$, $list_2$, ...}]Plotting table of Fibonacci numbers:
ListLogPlot[Table[Fibonacci[n], {n, 10}]]
we see that Fibonacci numbers grow exponentially. So when plotted using on a log scale the result fits points of a sloped line.
ListLogPlot[Table[n!, {n, 10}], Joined -> True]