ModelInputGroup.InferSchema Method

Definition

Namespace: Extreme.DataAnalysis.Models
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23

Overload List

InferSchema(String) Sets the model input group's schema to a single term with the specified key and unknown type.
InferSchema(IList<String>, Boolean) Sets the model input group's schema to a collection of terms with the specified keys.

ModelInputGroup.InferSchema(String)

Sets the model input group's schema to a single term with the specified key and unknown type.
C#
public void InferSchema(
	string key
)

Parameters

key  String
The key of the variable.

ModelInputGroup.InferSchema(IList<String>, Boolean)

Sets the model input group's schema to a collection of terms with the specified keys.
C#
public void InferSchema(
	IList<string> keys,
	bool noIntercept = true
)

Parameters

keys  IList<String>
A list of keys for the variables.
noIntercept  Boolean  (Optional)
Specifies whether a constant term (intercept) should be included.

See Also