| PFPGrowthAccumulateFeatureCounts Method |
Accumulates the feature counts.
Namespace:
Ookii.Jumbo.Jet.Samples.FPGrowth
Assembly:
Ookii.Jumbo.Jet.Samples (in Ookii.Jumbo.Jet.Samples.dll) Version: 2.0.0
Syntax public static int AccumulateFeatureCounts(
Utf8String key,
int currentValue,
int newValue
)
Public Shared Function AccumulateFeatureCounts (
key As Utf8String,
currentValue As Integer,
newValue As Integer
) As Integer
public:
static int AccumulateFeatureCounts(
Utf8String^ key,
int currentValue,
int newValue
)
static member AccumulateFeatureCounts :
key : Utf8String *
currentValue : int *
newValue : int -> int
Parameters
- key
- Type: Ookii.Jumbo.IOUtf8String
The key. - currentValue
- Type: SystemInt32
The current value. - newValue
- Type: SystemInt32
The new value.
Return Value
Type:
Int32The updated value.
See Also