Difference between revisions of "Error Messages/41151"
(Created page with "= Example Warning Text = :Zero datapoints supplied to function Regression, i.e., the «I» index is length zero. = Cause = When calling <code>Regression(y,B,I,k)</code...") |
|||
Line 1: | Line 1: | ||
− | = Example | + | [[Category: Error messages]] |
+ | == Example warning text == | ||
− | :Zero datapoints supplied to function | + | :<code>''Zero datapoints supplied to function Regression, i.e., the «I» index is length zero.''</code> |
− | = Cause = | + | == Cause == |
− | When calling | + | When calling [[Regression]](y, B, I, k), this warning will occur if index «I» has zero data points -- in which case there are zero data points to fit a curve to. |
This can also occur when [[Null]] values exist in «y», since the data points where «y» is [[Null]] are ignored. If all data points are ignored as a result, then again, you may end up with zero data points even though «I» is not of zero length. | This can also occur when [[Null]] values exist in «y», since the data points where «y» is [[Null]] are ignored. If all data points are ignored as a result, then again, you may end up with zero data points even though «I» is not of zero length. | ||
− | = Ignoring = | + | == Ignoring == |
− | When you ignore this warning, the result will have all coefficients equal to zero. (The constant y=0 is as good a fit as any curve to the zero data points). | + | When you [[IgnoreWarnings|ignore this warning]], the result will have all coefficients equal to zero. (The constant ''y = 0'' is as good a fit as any curve to the zero data points). |
+ | |||
+ | ==See Also== | ||
+ | * [[Arrays and Indexes]] | ||
+ | * [[Regression analysis]] | ||
+ | * [[Regression]] | ||
+ | * [[IgnoreWarnings]] |
Latest revision as of 20:29, 11 April 2016
Example warning text
Zero datapoints supplied to function Regression, i.e., the «I» index is length zero.
Cause
When calling Regression(y, B, I, k), this warning will occur if index «I» has zero data points -- in which case there are zero data points to fit a curve to.
This can also occur when Null values exist in «y», since the data points where «y» is Null are ignored. If all data points are ignored as a result, then again, you may end up with zero data points even though «I» is not of zero length.
Ignoring
When you ignore this warning, the result will have all coefficients equal to zero. (The constant y = 0 is as good a fit as any curve to the zero data points).
See Also
Comments
Enable comment auto-refresher