From aff4070d663d41adf8021babc125df15869e8795 Mon Sep 17 00:00:00 2001 From: Phil Steitz Date: Mon, 26 Apr 2004 05:16:35 +0000 Subject: [PATCH] Fixed typos. git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/math/trunk@141195 13f79535-47bb-0310-9956-ffa450edef68 --- xdocs/userguide/stat.xml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/xdocs/userguide/stat.xml b/xdocs/userguide/stat.xml index 367e0c4ae..10bc7282d 100644 --- a/xdocs/userguide/stat.xml +++ b/xdocs/userguide/stat.xml @@ -17,7 +17,7 @@ --> - + The Commons Math User Guide - Statistics @@ -243,7 +243,7 @@ System.out.println(f.getCumPct("z")); // displays 1 -- last value

org.apache.commons.math.stat.multivariate.BivariateRegression - provides ordinary least squares regression with one independent variable., estimating + provides ordinary least squares regression with one independent variable, estimating the linear model:

@@ -317,7 +317,7 @@ System.out.println(regression.getSlopeStdErr()); // displays slope standard erro System.out.println(regression.predict(1.5d) // displays predicted y value for x = 1.5 - More data points can be added and subsequent getXXX calls will incorporate + More data points can be added and subsequent getXxx calls will incorporate additional data in statistics.

Estimate a model from a double[][] array of data points
@@ -336,7 +336,7 @@ System.out.println(regression.getSlope()); // displays slope of regression System.out.println(regression.getSlopeStdErr()); // displays slope standard error More data points -- even another double[][] array -- can be added and subsequent - getXXX calls will incorporate additional data in statistics. + getXxx calls will incorporate additional data in statistics.