DataFrame<R, C>.Summarize Method

Definition

Namespace: Numerics.NET.DataAnalysis
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0

Overload List

Summarize() Returns a summary of the contents of the data frame using the default summary options.
Summarize(SummaryOptions) Returns a summary of the contents of the data frame using the specified options.

Summarize

Returns a summary of the contents of the data frame using the default summary options.
C#
public string Summarize()

Return Value

String
A string that contains a human readable summary of the data frame.

Implements

ISummarizable.Summarize()

Summarize(SummaryOptions)

Returns a summary of the contents of the data frame using the specified options.
C#
public string Summarize(
	SummaryOptions options
)

Parameters

options  SummaryOptions
 

Return Value

String
A string that contains a human readable summary of the data frame.

Implements

ISummarizable.Summarize(SummaryOptions)

See Also