Stopword removal is a preprocessing step in text analysis. It helps clean text by removing common words like "the" or "and" that do not add meaning. The main goal is to improve the quality of features for models.
Metrics to check here are impact on downstream model performance, such as accuracy or F1 score of a text classifier. We want to see if removing stopwords helps the model understand text better.
Also, check vocabulary size reduction and processing speed. Removing stopwords should reduce text size and speed up training without losing important information.