MiningFeatureSelection Enum
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.
Microsoft.AnalysisServices.AdomdClient.MiningFeatureSelection
public enum MiningFeatureSelection
type MiningFeatureSelection =
Public Enum MiningFeatureSelection
- Inheritance
-
MiningFeatureSelection
Fields
Name | Value | Description |
---|---|---|
All | 0 | Used to request from a model all the attributes, regardless whether they are feature selected or not |
NotSelected | 1 | Used to request from a model all the attributes that are not feature selected (neither as input nor as output), or to show that feature selection information is not available for an attribute |
Selected | 2 | Used to request from a model all the attributes that are feature selected (as input or as output) |
Input | 4 | Used to return all the input-selected attributes, or to show that an attribute is feature selected as input |
Output | 8 | Used to return all the output-selected attributes, or to show that an attribute is feature selected as output |
InputAndOutput | 12 | Used to return all the attributes that are feature seleted as both input and output, or to show that an attribute is feature selected both as input and as output |