Diagnostics are an important part of analyzing models of data. Plots of residuals and leverage or influence measures provide valuable insight into whether assumptions of the ...
PlotRange is an option for graphics functions that specifies what range of coordinates to include in a plot.
ListDensityPlot[array] generates a smooth density plot from an array of values. ListDensityPlot[{{x_1, y_1, f_1}, {x_2, y_2, f_2}, ...}] generates a density plot with values ...
ConstantArray[c, n] generates a list of n copies of the element c.ConstantArray[c, {n_1, n_2, ...}] generates an n_1*n_2*... array of nested lists containing copies of the ...
PlotPoints is an option for plotting functions that specifies how many initial sample points to use.
In Mathematica , many kinds of data are stored in tables or lists. Mathematica provides many useful functions for creating and manipulating these tables.
ListLinePlot[{y_1, y_2, ...}] plots a line through a list of values, assumed to correspond to x coordinates 1, 2, .... ListLinePlot[{{x_1, y_1}, {x_2, y_2}, ...}] plots a ...
ParametricPlot[{f_x, f_y}, {u, u_min, u_max}] generates a parametric plot of a curve with x and y coordinates f_x and f_y as a function of u. ParametricPlot[{{f_x, f_y}, ...
ListLogPlot[{y_1, y_2, ...}] makes a log plot of the y_i, assumed to correspond to x coordinates 1, 2, ....ListLogPlot[{{x_1, y_1}, {x_2, y_2}, ...}] makes a log plot of the ...
RegionPlot[pred, {x, x_min, x_max}, {y, y_min, y_max}] makes a plot showing the region in which pred is True.