Populates the model input group using the specified
data frame, optionally clearing the group's schema first.
Namespace:
Extreme.DataAnalysis.Models
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public void Populate(
IDataFrame frame,
bool allowSkip = true,
string prefix = null,
bool clearSchema = false,
bool noIntercept = true
)
Public Sub Populate (
frame As IDataFrame,
Optional allowSkip As Boolean = true,
Optional prefix As String = Nothing,
Optional clearSchema As Boolean = false,
Optional noIntercept As Boolean = true
)
public:
void Populate(
IDataFrame^ frame,
bool allowSkip = true,
String^ prefix = nullptr,
bool clearSchema = false,
bool noIntercept = true
)
member Populate :
frame : IDataFrame *
?allowSkip : bool *
?prefix : string *
?clearSchema : bool *
?noIntercept : bool
(* Defaults:
let _allowSkip = defaultArg allowSkip true
let _prefix = defaultArg prefix null
let _clearSchema = defaultArg clearSchema false
let _noIntercept = defaultArg noIntercept true
*)
-> unit
Parameters
- frame
- Type: Extreme.DataAnalysisIDataFrame
The data frame from which to populate
the model input group. - allowSkip (Optional)
- Type: SystemBoolean
(Optional.) Specifies whether columns with an incompatible
data type may be skipped. The default is . - prefix (Optional)
- Type: SystemString
(Optional.) Prefix to be used when constructing column keys
when frame does not have a column index. - clearSchema (Optional)
- Type: SystemBoolean
Specifies whether the group's
current schema should be cleared and a new schema
inferred from the data frame. - noIntercept (Optional)
- Type: SystemBoolean
Specifies whether an intercept (constant) term should be
included or not.
Reference