StatisticFormula.Mean(String) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
The mean formula calculates the average, or mean, of data stored in a data series.
public:
double Mean(System::String ^ inputSeriesName);
public double Mean (string inputSeriesName);
member this.Mean : string -> double
Public Function Mean (inputSeriesName As String) As Double
Parameters
- inputSeriesName
- String
Name of the Series object that stores the data for which the mean value is required.
Returns
Mean value of all the data points in the given series.
Examples
The following code demonstrates how to use this formula.
Dim result As Double = Chart1.DataManipulator.Statistics.Mean("Series1")
double result = Chart1.DataManipulator.Statistics.Mean("Series1");
Remarks
If named input series does not exist in the SeriesCollection at the time of the method call, an exception is thrown.