Each graphing method should produce:
scatter
: a scatter plot of the points you provided. Most useful when performing regression analysis or trend fitting.semilogx
: just like plot
, but the $x$-axis is turned into a log-scale. Useful for plotting functions over multiple orders of magnitude, or for identifying power-law relations.semilogy
: like semilogx
only in the $y$-axis.loglog
: a combination of semilogx
and semilogy
!