The wine dataset is filtered based on selections given by a user. Please find an example below (with harcoded values Chile and max price 20 $)
# Filter the data by country and price
filtered <- wine_DT %>%
filter(country %in% 'Chile') %>%
filter(price <= 20) %>% arrange(desc(points))
filtered <- head(filtered, 5)
filtered
## country points price taster_name
## 1 Chile 92 20 Michael Schachner
## 2 Chile 92 20 Michael Schachner
## 3 Chile 92 20 Michael Schachner
## 4 Chile 92 20 Michael Schachner
## 5 Chile 92 20 Michael Schachner