All functionality from Statistics`LinearRegression` is available in the built-in Mathematica kernel.
LogLikelihood[dist, {x_1, x_2, ...}] gives the log-likelihood function for observations x_1, x_2, ... from the distribution dist.
This example demonstrates various techniques for designing a progress bar dialog and a number of options available to wrap the reusable widget involved. Here is one technique ...
Every new version of Mathematica contains many new features. But careful design from the outset has allowed nearly total compatibility to be maintained between all versions. ...
SphericalPlot3D[r, \[Theta], \[Phi]] generates a 3D plot with a spherical radius r as a function of spherical coordinates \[Theta] and \[Phi].SphericalPlot3D[r, {\[Theta], ...
StringSplit["string"] splits " string" into a list of substrings separated by whitespace. StringSplit["string", patt] splits into substrings separated by delimiters matching ...
ContourPlot[f, {x, x_min, x_max}, {y, y_min, y_max}] generates a contour plot of f as a function of x and y. ContourPlot[f == g, {x, x_min, x_max}, {y, y_min, y_max}] plots ...
ErrorListPlot[{{y_1, dy_1}, {y_2, dy_2}, ...}] plots points corresponding to a list of values y_1, y_2, ..., with corresponding error bars. The errors have magnitudes dy_1, ...
The raw SQL command DROP TABLE drops tables from a database. An alternative is to use the Mathematica command SQLDropTable, described in "Dropping Tables". If you find that ...