
Explanation:

In machine learning, especially within the Microsoft Azure AI Fundamentals (AI-900) framework, datasets used for supervised learning are composed of features (inputs) and labels (outputs). According to the Microsoft Learn module "Explore the machine learning process", a feature is any measurable property or attribute used by the model to make predictions, whereas a label is the actual value or category the model is trying to predict.
* Household Income # FeatureA feature (also known as an independent variable) represents the input data that the machine learning algorithm uses to detect patterns or correlations. In this dataset, Household Income is a numeric value that influences the prediction of house price categories. During training, the model learns how variations in household income correlate with changes in the house price category.
Microsoft Learn defines features as "the attributes or measurable inputs that are used to train the model." Thus, Household Income serves as a predictive input or feature.
* House Price Category # LabelThe label (or dependent variable) represents the output the model aims to predict. It is the known result during training that helps the algorithm learn correct mappings between features and outcomes. In this scenario, House Price Category-which can take values such as "Low,"
"Middle," or "High"-is the classification outcome that the model will predict based on household income (and possibly other variables). According to Microsoft Learn, "the label is the variable that contains the known values that the model is trained to predict." In summary, the dataset defines a supervised learning classification problem, where Household Income is the feature (input) and House Price Category is the label (output) that the model will learn to predict.