Searching text
You're continuing to analyze the beauty product reviews dataset. The marketing team is launching a new perfume line and wants to understand what customers say about scents in existing products.
The reviews DataFrame is available with 5 rows printed to preview.
Cet exercice fait partie du cours
Data Transformation with Polars
Instructions
- Filter for reviews that mention
"scent".
Exercice interactif pratique
Essayez cet exercice en complétant cet exemple de code.
# Filter for reviews containing "scent"
reviews.filter(
pl.col("review").____.____("____")
)