Goal is to predict attrition #import data
library(tidyverse)
## ── Attaching core tidyverse packages ──────────────────────── tidyverse 2.0.0 ──
## ✔ dplyr 1.1.4 ✔ readr 2.1.6
## ✔ forcats 1.0.1 ✔ stringr 1.6.0
## ✔ ggplot2 4.0.2 ✔ tibble 3.3.1
## ✔ lubridate 1.9.4 ✔ tidyr 1.3.2
## ✔ purrr 1.2.1
## ── Conflicts ────────────────────────────────────────── tidyverse_conflicts() ──
## ✖ dplyr::filter() masks stats::filter()
## ✖ dplyr::lag() masks stats::lag()
## ℹ Use the conflicted package (<http://conflicted.r-lib.org/>) to force all conflicts to become errors
library(correlationfunnel)
## ══ correlationfunnel Tip #2 ════════════════════════════════════════════════════
## Clean your NA's prior to using `binarize()`.
## Missing values and cleaning data are critical to getting great correlations. :)
library(tidymodels)
## ── Attaching packages ────────────────────────────────────── tidymodels 1.4.1 ──
## ✔ broom 1.0.12 ✔ rsample 1.3.2
## ✔ dials 1.4.2 ✔ tailor 0.1.0
## ✔ infer 1.1.0 ✔ tune 2.0.1
## ✔ modeldata 1.5.1 ✔ workflows 1.3.0
## ✔ parsnip 1.4.1 ✔ workflowsets 1.1.1
## ✔ recipes 1.3.1 ✔ yardstick 1.3.2
## ── Conflicts ───────────────────────────────────────── tidymodels_conflicts() ──
## ✖ scales::discard() masks purrr::discard()
## ✖ dplyr::filter() masks stats::filter()
## ✖ recipes::fixed() masks stringr::fixed()
## ✖ dplyr::lag() masks stats::lag()
## ✖ yardstick::spec() masks readr::spec()
## ✖ recipes::step() masks stats::step()
library(textrecipes)
ikea <- readr::read_csv('https://raw.githubusercontent.com/rfordatascience/tidytuesday/main/data/2020/2020-11-03/ikea.csv')
## New names:
## Rows: 3694 Columns: 14
## ── Column specification
## ──────────────────────────────────────────────────────── Delimiter: "," chr
## (7): name, category, old_price, link, other_colors, short_description, d... dbl
## (6): ...1, item_id, price, depth, height, width lgl (1): sellable_online
## ℹ Use `spec()` to retrieve the full column specification for this data. ℹ
## Specify the column types or set `show_col_types = FALSE` to quiet this message.
## • `` -> `...1`
#clean data
skimr::skim(ikea)
| Name | ikea |
| Number of rows | 3694 |
| Number of columns | 14 |
| _______________________ | |
| Column type frequency: | |
| character | 7 |
| logical | 1 |
| numeric | 6 |
| ________________________ | |
| Group variables | None |
Variable type: character
| skim_variable | n_missing | complete_rate | min | max | empty | n_unique | whitespace |
|---|---|---|---|---|---|---|---|
| name | 0 | 1 | 3 | 27 | 0 | 607 | 0 |
| category | 0 | 1 | 4 | 36 | 0 | 17 | 0 |
| old_price | 0 | 1 | 4 | 13 | 0 | 365 | 0 |
| link | 0 | 1 | 52 | 163 | 0 | 2962 | 0 |
| other_colors | 0 | 1 | 2 | 3 | 0 | 2 | 0 |
| short_description | 0 | 1 | 3 | 63 | 0 | 1706 | 0 |
| designer | 0 | 1 | 3 | 1261 | 0 | 381 | 0 |
Variable type: logical
| skim_variable | n_missing | complete_rate | mean | count |
|---|---|---|---|---|
| sellable_online | 0 | 1 | 0.99 | TRU: 3666, FAL: 28 |
Variable type: numeric
| skim_variable | n_missing | complete_rate | mean | sd | p0 | p25 | p50 | p75 | p100 | hist |
|---|---|---|---|---|---|---|---|---|---|---|
| …1 | 0 | 1.00 | 1846.50 | 1066.51 | 0 | 923.25 | 1846.5 | 2769.75 | 3693 | ▇▇▇▇▇ |
| item_id | 0 | 1.00 | 48632396.79 | 28887094.10 | 58487 | 20390574.00 | 49288078.0 | 70403572.75 | 99932615 | ▇▇▇▇▇ |
| price | 0 | 1.00 | 1078.21 | 1374.65 | 3 | 180.90 | 544.7 | 1429.50 | 9585 | ▇▁▁▁▁ |
| depth | 1463 | 0.60 | 54.38 | 29.96 | 1 | 38.00 | 47.0 | 60.00 | 257 | ▇▃▁▁▁ |
| height | 988 | 0.73 | 101.68 | 61.10 | 1 | 67.00 | 83.0 | 124.00 | 700 | ▇▂▁▁▁ |
| width | 589 | 0.84 | 104.47 | 71.13 | 1 | 60.00 | 80.0 | 140.00 | 420 | ▇▅▂▁▁ |
ikea <- ikea %>% na.omit()
factors_vec <- ikea %>% select(item_id, price, depth, height, width, -...1) %>% names()
ikea_clean <- ikea %>%
#mutate(Education = Education %>% as.factor()) %>%
#address factors imported as numeric
mutate(across(all_of(factors_vec), as.factor))
ikea_clean <- ikea_clean %>%
mutate(across(is.logical, as.factor)) %>%
mutate(across(c(height, width, depth), as.numeric))
## Warning: There was 1 warning in `mutate()`.
## ℹ In argument: `across(is.logical, as.factor)`.
## Caused by warning:
## ! Use of bare predicate functions was deprecated in tidyselect 1.1.0.
## ℹ Please use wrap predicates in `where()` instead.
## # Was:
## data %>% select(is.logical)
##
## # Now:
## data %>% select(where(is.logical))
#drop zero variance variables
#explore data
ikea_clean %>% count(name)
## # A tibble: 289 × 2
## name n
## <chr> <int>
## 1 ADDE 1
## 2 AGAM 4
## 3 AGEN 1
## 4 ALEX 7
## 5 ALGOT 24
## 6 ALGOT / BROR 1
## 7 ALGOT / SKÅDIS 1
## 8 ANGERSBY 1
## 9 ANTILOP 4
## 10 ARKELSTORP 2
## # ℹ 279 more rows
ikea_clean %>%
ggplot(aes(name)) +
geom_bar()
#step 1
ikea_binarized <- ikea_clean %>%
select(-item_id) %>%
binarize()
ikea_binarized %>%glimpse()
## Rows: 1,899
## Columns: 105
## $ `...1__-Inf_799.5` <dbl> …
## $ ...1__799.5_1653 <dbl> …
## $ ...1__1653_2474.5 <dbl> …
## $ ...1__2474.5_Inf <dbl> …
## $ name__ALGOT <dbl> …
## $ name__BEKANT <dbl> …
## $ name__BESTÅ <dbl> …
## $ `name__BILLY_/_OXBERG` <dbl> …
## $ name__BRIMNES <dbl> …
## $ name__BROR <dbl> …
## $ name__EKET <dbl> …
## $ name__GRÖNLID <dbl> …
## $ name__HAVSTA <dbl> …
## $ name__HAVSTEN <dbl> …
## $ name__HEMNES <dbl> …
## $ name__IVAR <dbl> …
## $ name__JONAXEL <dbl> …
## $ name__KALLAX <dbl> …
## $ name__LIDHULT <dbl> …
## $ name__LIXHULT <dbl> …
## $ name__NORDLI <dbl> …
## $ name__PAX <dbl> …
## $ name__PLATSA <dbl> …
## $ `name__STUVA_/_FRITIDS` <dbl> …
## $ name__TROFAST <dbl> …
## $ name__VALLENTUNA <dbl> …
## $ name__VIMLE <dbl> …
## $ `name__-OTHER` <dbl> …
## $ category__Bar_furniture <dbl> …
## $ category__Beds <dbl> …
## $ `category__Bookcases_&_shelving_units` <dbl> …
## $ `category__Cabinets_&_cupboards` <dbl> …
## $ category__Chairs <dbl> …
## $ `category__Chests_of_drawers_&_drawer_units` <dbl> …
## $ `category__Children's_furniture` <dbl> …
## $ category__Nursery_furniture <dbl> …
## $ category__Outdoor_furniture <dbl> …
## $ `category__Sideboards,_buffets_&_console_tables` <dbl> …
## $ `category__Sofas_&_armchairs` <dbl> …
## $ `category__Tables_&_desks` <dbl> …
## $ `category__TV_&_media_furniture` <dbl> …
## $ category__Wardrobes <dbl> …
## $ `category__-OTHER` <dbl> …
## $ price__175 <dbl> …
## $ price__195 <dbl> …
## $ price__225 <dbl> …
## $ price__275 <dbl> …
## $ price__295 <dbl> …
## $ price__345 <dbl> …
## $ price__375 <dbl> …
## $ price__395 <dbl> …
## $ price__495 <dbl> …
## $ price__595 <dbl> …
## $ price__695 <dbl> …
## $ price__995 <dbl> …
## $ `price__-OTHER` <dbl> …
## $ old_price__No_old_price <dbl> …
## $ `old_price__-OTHER` <dbl> …
## $ sellable_online__TRUE <dbl> …
## $ `sellable_online__-OTHER` <dbl> …
## $ `link__https://www.ikea.com/sa/en/p/besta-burs-tv-bench-high-gloss-white-30269129/` <dbl> …
## $ `link__-OTHER` <dbl> …
## $ other_colors__No <dbl> …
## $ other_colors__Yes <dbl> …
## $ `short_description__3-seat_sofa` <dbl> …
## $ `short_description__3-seat_sofa-bed` <dbl> …
## $ short_description__Armchair <dbl> …
## $ short_description__Chair <dbl> …
## $ `short_description__Wardrobe,__________150x66x236_cm` <dbl> …
## $ `short_description__-OTHER` <dbl> …
## $ designer__Andreas_Fredriksson <dbl> …
## $ designer__Carina_Bengs <dbl> …
## $ designer__Carl_Öjerstam <dbl> …
## $ designer__Ebba_Strandmark <dbl> …
## $ designer__Ehlén_Johansson <dbl> …
## $ `designer__Ehlén_Johansson/IKEA_of_Sweden` <dbl> …
## $ designer__Eva_Lilja_Löwenhielm <dbl> …
## $ designer__Francis_Cayouette <dbl> …
## $ designer__Gillis_Lundgren <dbl> …
## $ designer__Henrik_Preutz <dbl> …
## $ designer__IKEA_of_Sweden <dbl> …
## $ `designer__IKEA_of_Sweden/Ehlén_Johansson` <dbl> …
## $ `designer__IKEA_of_Sweden/Jon_Karlsson` <dbl> …
## $ designer__Johan_Kroon <dbl> …
## $ designer__Jon_Karlsson <dbl> …
## $ `designer__Jon_Karlsson/IKEA_of_Sweden` <dbl> …
## $ `designer__K_Hagberg/M_Hagberg` <dbl> …
## $ designer__Mia_Lagerman <dbl> …
## $ designer__Nike_Karlsson <dbl> …
## $ designer__Ola_Wihlborg <dbl> …
## $ designer__Studio_Copenhagen <dbl> …
## $ designer__Tord_Björklund <dbl> …
## $ `designer__-OTHER` <dbl> …
## $ `depth__-Inf_32` <dbl> …
## $ depth__32_39 <dbl> …
## $ depth__39_52 <dbl> …
## $ depth__52_Inf <dbl> …
## $ `height__-Inf_58` <dbl> …
## $ height__58_79 <dbl> …
## $ height__79_137 <dbl> …
## $ height__137_Inf <dbl> …
## $ `width__-Inf_45` <dbl> …
## $ width__45_77 <dbl> …
## $ width__77_129.5 <dbl> …
## $ width__129.5_Inf <dbl> …
#step 2L correlation
#ikea_correlation <- ikea_binarized %>%
#correlate(sellable_online__1)
#ikea_correlation
#step 3: plot
#ikea_correlation %>%
# correlationfunnel::plot_correlation_funnel()
set.seed(1234)
ikea_clean <- ikea_clean %>% sample_n(1000)
ikea_split <- initial_split(ikea_clean, strata = sellable_online)
ikea_train <- training(ikea_split)
ikea_test <- testing(ikea_split)
ikea_cv <-rsample::vfold_cv(ikea_train, strata = sellable_online)
ikea_cv
## # 10-fold cross-validation using stratification
## # A tibble: 10 × 2
## splits id
## <list> <chr>
## 1 <split [675/75]> Fold01
## 2 <split [675/75]> Fold02
## 3 <split [675/75]> Fold03
## 4 <split [675/75]> Fold04
## 5 <split [675/75]> Fold05
## 6 <split [675/75]> Fold06
## 7 <split [675/75]> Fold07
## 8 <split [675/75]> Fold08
## 9 <split [675/75]> Fold09
## 10 <split [675/75]> Fold10
library(themis)
xgboost_recipe <- recipes::recipe(sellable_online ~., data = ikea_train) %>%
update_role(item_id, new_role = "id") %>%
step_other(name, designer) %>%
step_tokenize(short_description) %>% step_tokenfilter(short_description, max_tokens = 100) %>%
step_tfidf(short_description) %>%
step_YeoJohnson(height, width, depth) %>%
step_dummy(all_nominal_predictors()) %>%
step_smote(sellable_online)
xgboost_recipe %>% prep() %>% juice() %>% glimpse()
## Rows: 1,488
## Columns: 1,671
## $ ...1 <dbl> …
## $ item_id <fct> …
## $ depth <dbl> …
## $ height <dbl> …
## $ width <dbl> …
## $ sellable_online <fct> …
## $ tfidf_short_description_1 <dbl> …
## $ tfidf_short_description_120x40x64 <dbl> …
## $ tfidf_short_description_147x147 <dbl> …
## $ tfidf_short_description_150x60x236 <dbl> …
## $ tfidf_short_description_150x66x236 <dbl> …
## $ tfidf_short_description_2 <dbl> …
## $ tfidf_short_description_200x66x236 <dbl> …
## $ tfidf_short_description_3 <dbl> …
## $ tfidf_short_description_4 <dbl> …
## $ tfidf_short_description_41x101 <dbl> …
## $ tfidf_short_description_46x30x94 <dbl> …
## $ tfidf_short_description_5 <dbl> …
## $ tfidf_short_description_50x51x70 <dbl> …
## $ tfidf_short_description_6 <dbl> …
## $ tfidf_short_description_63 <dbl> …
## $ tfidf_short_description_74 <dbl> …
## $ tfidf_short_description_8 <dbl> …
## $ tfidf_short_description_80x200 <dbl> …
## $ tfidf_short_description_80x30x202 <dbl> …
## $ tfidf_short_description_90x200 <dbl> …
## $ tfidf_short_description_94x44x52 <dbl> …
## $ tfidf_short_description_add <dbl> …
## $ tfidf_short_description_and <dbl> …
## $ tfidf_short_description_armchair <dbl> …
## $ tfidf_short_description_armrest <dbl> …
## $ tfidf_short_description_armrests <dbl> …
## $ tfidf_short_description_backrest <dbl> …
## $ tfidf_short_description_bar <dbl> …
## $ tfidf_short_description_baskets <dbl> …
## $ tfidf_short_description_bed <dbl> …
## $ tfidf_short_description_bench <dbl> …
## $ tfidf_short_description_bookcase <dbl> …
## $ tfidf_short_description_box <dbl> …
## $ tfidf_short_description_cabinet <dbl> …
## $ tfidf_short_description_castors <dbl> …
## $ tfidf_short_description_chair <dbl> …
## $ tfidf_short_description_chaise <dbl> …
## $ tfidf_short_description_changing <dbl> …
## $ tfidf_short_description_chest <dbl> …
## $ `tfidf_short_description_children's` <dbl> …
## $ tfidf_short_description_clothes <dbl> …
## $ tfidf_short_description_cm <dbl> …
## $ tfidf_short_description_combination <dbl> …
## $ tfidf_short_description_corner <dbl> …
## $ tfidf_short_description_cover <dbl> …
## $ tfidf_short_description_cushion <dbl> …
## $ tfidf_short_description_day <dbl> …
## $ tfidf_short_description_desk <dbl> …
## $ tfidf_short_description_door <dbl> …
## $ tfidf_short_description_doors <dbl> …
## $ tfidf_short_description_drawer <dbl> …
## $ tfidf_short_description_drawers <dbl> …
## $ tfidf_short_description_easy <dbl> …
## $ tfidf_short_description_feet <dbl> …
## $ tfidf_short_description_folding <dbl> …
## $ tfidf_short_description_for <dbl> …
## $ tfidf_short_description_frame <dbl> …
## $ tfidf_short_description_glass <dbl> …
## $ tfidf_short_description_highchair <dbl> …
## $ tfidf_short_description_in <dbl> …
## $ tfidf_short_description_inserts <dbl> …
## $ tfidf_short_description_junior <dbl> …
## $ tfidf_short_description_leg <dbl> …
## $ tfidf_short_description_lock <dbl> …
## $ tfidf_short_description_longue <dbl> …
## $ tfidf_short_description_mesh <dbl> …
## $ tfidf_short_description_modular <dbl> …
## $ tfidf_short_description_mounted <dbl> …
## $ tfidf_short_description_of <dbl> …
## $ tfidf_short_description_on <dbl> …
## $ tfidf_short_description_outdoor <dbl> …
## $ tfidf_short_description_panel <dbl> …
## $ tfidf_short_description_plinth <dbl> …
## $ tfidf_short_description_rail <dbl> …
## $ tfidf_short_description_seat <dbl> …
## $ tfidf_short_description_section <dbl> …
## $ tfidf_short_description_sections <dbl> …
## $ tfidf_short_description_shelf <dbl> …
## $ tfidf_short_description_shelves <dbl> …
## $ tfidf_short_description_shelving <dbl> …
## $ tfidf_short_description_side <dbl> …
## $ tfidf_short_description_sliding <dbl> …
## $ tfidf_short_description_smart <dbl> …
## $ tfidf_short_description_sofa <dbl> …
## $ tfidf_short_description_step <dbl> …
## $ tfidf_short_description_stool <dbl> …
## $ tfidf_short_description_storage <dbl> …
## $ tfidf_short_description_table <dbl> …
## $ tfidf_short_description_tbl <dbl> …
## $ tfidf_short_description_three <dbl> …
## $ tfidf_short_description_top <dbl> …
## $ tfidf_short_description_tv <dbl> …
## $ tfidf_short_description_underframe <dbl> …
## $ tfidf_short_description_unit <dbl> …
## $ tfidf_short_description_upright <dbl> …
## $ tfidf_short_description_w <dbl> …
## $ tfidf_short_description_wall <dbl> …
## $ tfidf_short_description_wardrobe <dbl> …
## $ tfidf_short_description_wire <dbl> …
## $ tfidf_short_description_with <dbl> …
## $ name_PAX <dbl> …
## $ name_other <dbl> …
## $ category_Beds <dbl> …
## $ category_Bookcases...shelving.units <dbl> …
## $ category_Cabinets...cupboards <dbl> …
## $ category_Café.furniture <dbl> …
## $ category_Chairs <dbl> …
## $ category_Chests.of.drawers...drawer.units <dbl> …
## $ category_Children.s.furniture <dbl> …
## $ category_Nursery.furniture <dbl> …
## $ category_Outdoor.furniture <dbl> …
## $ category_Room.dividers <dbl> …
## $ category_Sideboards..buffets...console.tables <dbl> …
## $ category_Sofas...armchairs <dbl> …
## $ category_Tables...desks <dbl> …
## $ category_Trolleys <dbl> …
## $ category_TV...media.furniture <dbl> …
## $ category_Wardrobes <dbl> …
## $ price_X10 <dbl> …
## $ price_X15 <dbl> …
## $ price_X18 <dbl> …
## $ price_X20 <dbl> …
## $ price_X25 <dbl> …
## $ price_X30 <dbl> …
## $ price_X35 <dbl> …
## $ price_X35.4 <dbl> …
## $ price_X39 <dbl> …
## $ price_X40 <dbl> …
## $ price_X45 <dbl> …
## $ price_X49 <dbl> …
## $ price_X50 <dbl> …
## $ price_X51 <dbl> …
## $ price_X55 <dbl> …
## $ price_X57 <dbl> …
## $ price_X59 <dbl> …
## $ price_X60 <dbl> …
## $ price_X65 <dbl> …
## $ price_X69 <dbl> …
## $ price_X70 <dbl> …
## $ price_X75 <dbl> …
## $ price_X79 <dbl> …
## $ price_X79.2 <dbl> …
## $ price_X80 <dbl> …
## $ price_X84 <dbl> …
## $ price_X85 <dbl> …
## $ price_X87 <dbl> …
## $ price_X89 <dbl> …
## $ price_X94 <dbl> …
## $ price_X95 <dbl> …
## $ price_X99 <dbl> …
## $ price_X100 <dbl> …
## $ price_X107.4 <dbl> …
## $ price_X110 <dbl> …
## $ price_X114 <dbl> …
## $ price_X115 <dbl> …
## $ price_X125 <dbl> …
## $ price_X129 <dbl> …
## $ price_X130 <dbl> …
## $ price_X134 <dbl> …
## $ price_X134.6 <dbl> …
## $ price_X135 <dbl> …
## $ price_X139 <dbl> …
## $ price_X140 <dbl> …
## $ price_X141 <dbl> …
## $ price_X145 <dbl> …
## $ price_X149 <dbl> …
## $ price_X150 <dbl> …
## $ price_X155 <dbl> …
## $ price_X159 <dbl> …
## $ price_X160 <dbl> …
## $ price_X165 <dbl> …
## $ price_X170 <dbl> …
## $ price_X175 <dbl> …
## $ price_X177 <dbl> …
## $ price_X178 <dbl> …
## $ price_X179 <dbl> …
## $ price_X180 <dbl> …
## $ price_X185 <dbl> …
## $ price_X195 <dbl> …
## $ price_X196 <dbl> …
## $ price_X198 <dbl> …
## $ price_X199 <dbl> …
## $ price_X200 <dbl> …
## $ price_X204 <dbl> …
## $ price_X205 <dbl> …
## $ price_X210 <dbl> …
## $ price_X215 <dbl> …
## $ price_X220 <dbl> …
## $ price_X225 <dbl> …
## $ price_X230 <dbl> …
## $ price_X231.6 <dbl> …
## $ price_X234 <dbl> …
## $ price_X235 <dbl> …
## $ price_X236 <dbl> …
## $ price_X237 <dbl> …
## $ price_X240 <dbl> …
## $ price_X244 <dbl> …
## $ price_X245 <dbl> …
## $ price_X249 <dbl> …
## $ price_X250 <dbl> …
## $ price_X255 <dbl> …
## $ price_X260 <dbl> …
## $ price_X265 <dbl> …
## $ price_X267 <dbl> …
## $ price_X268 <dbl> …
## $ price_X271.2 <dbl> …
## $ price_X275 <dbl> …
## $ price_X276 <dbl> …
## $ price_X285 <dbl> …
## $ price_X287 <dbl> …
## $ price_X290 <dbl> …
## $ price_X295 <dbl> …
## $ price_X296 <dbl> …
## $ price_X297 <dbl> …
## $ price_X297.5 <dbl> …
## $ price_X299 <dbl> …
## $ price_X300 <dbl> …
## $ price_X302 <dbl> …
## $ price_X305 <dbl> …
## $ price_X307 <dbl> …
## $ price_X309 <dbl> …
## $ price_X310 <dbl> …
## $ price_X311 <dbl> …
## $ price_X311.4 <dbl> …
## $ price_X315 <dbl> …
## $ price_X316 <dbl> …
## $ price_X320 <dbl> …
## $ price_X321 <dbl> …
## $ price_X325 <dbl> …
## $ price_X327 <dbl> …
## $ price_X335 <dbl> …
## $ price_X340 <dbl> …
## $ price_X345 <dbl> …
## $ price_X347 <dbl> …
## $ price_X349 <dbl> …
## $ price_X350 <dbl> …
## $ price_X355 <dbl> …
## $ price_X356 <dbl> …
## $ price_X357 <dbl> …
## $ price_X363 <dbl> …
## $ price_X365 <dbl> …
## $ price_X370 <dbl> …
## $ price_X371 <dbl> …
## $ price_X375 <dbl> …
## $ price_X377 <dbl> …
## $ price_X380 <dbl> …
## $ price_X382 <dbl> …
## $ price_X383.8 <dbl> …
## $ price_X384 <dbl> …
## $ price_X385 <dbl> …
## $ price_X386 <dbl> …
## $ price_X389 <dbl> …
## $ price_X390 <dbl> …
## $ price_X395 <dbl> …
## $ price_X398 <dbl> …
## $ price_X399 <dbl> …
## $ price_X400 <dbl> …
## $ price_X405 <dbl> …
## $ price_X409 <dbl> …
## $ price_X410 <dbl> …
## $ price_X412 <dbl> …
## $ price_X414 <dbl> …
## $ price_X415 <dbl> …
## $ price_X417 <dbl> …
## $ price_X420 <dbl> …
## $ price_X424 <dbl> …
## $ price_X425 <dbl> …
## $ price_X428 <dbl> …
## $ price_X429 <dbl> …
## $ price_X434 <dbl> …
## $ price_X435 <dbl> …
## $ price_X440 <dbl> …
## $ price_X443 <dbl> …
## $ price_X444 <dbl> …
## $ price_X445 <dbl> …
## $ price_X449 <dbl> …
## $ price_X450 <dbl> …
## $ price_X451 <dbl> …
## $ price_X453 <dbl> …
## $ price_X456 <dbl> …
## $ price_X458 <dbl> …
## $ price_X460 <dbl> …
## $ price_X465 <dbl> …
## $ price_X470 <dbl> …
## $ price_X474.2 <dbl> …
## $ price_X475 <dbl> …
## $ price_X476 <dbl> …
## $ price_X477 <dbl> …
## $ price_X480 <dbl> …
## $ price_X490 <dbl> …
## $ price_X495 <dbl> …
## $ price_X498 <dbl> …
## $ price_X499 <dbl> …
## $ price_X500 <dbl> …
## $ price_X505 <dbl> …
## $ price_X508 <dbl> …
## $ price_X509 <dbl> …
## $ price_X510 <dbl> …
## $ price_X515 <dbl> …
## $ price_X516 <dbl> …
## $ price_X519 <dbl> …
## $ price_X521.5 <dbl> …
## $ price_X528.2 <dbl> …
## $ price_X529 <dbl> …
## $ price_X530 <dbl> …
## $ price_X542 <dbl> …
## $ price_X544.4 <dbl> …
## $ price_X545 <dbl> …
## $ price_X550 <dbl> …
## $ price_X555 <dbl> …
## $ price_X556 <dbl> …
## $ price_X560 <dbl> …
## $ price_X565 <dbl> …
## $ price_X570 <dbl> …
## $ price_X575 <dbl> …
## $ price_X580 <dbl> …
## $ price_X585 <dbl> …
## $ price_X588 <dbl> …
## $ price_X590 <dbl> …
## $ price_X592 <dbl> …
## $ price_X594 <dbl> …
## $ price_X595 <dbl> …
## $ price_X597 <dbl> …
## $ price_X598 <dbl> …
## $ price_X600 <dbl> …
## $ price_X612 <dbl> …
## $ price_X615 <dbl> …
## $ price_X620 <dbl> …
## $ price_X624 <dbl> …
## $ price_X625 <dbl> …
## $ price_X636 <dbl> …
## $ price_X640 <dbl> …
## $ price_X643 <dbl> …
## $ price_X645 <dbl> …
## $ price_X650 <dbl> …
## $ price_X656 <dbl> …
## $ price_X660 <dbl> …
## $ price_X661 <dbl> …
## $ price_X663 <dbl> …
## $ price_X665 <dbl> …
## $ price_X670 <dbl> …
## $ price_X674 <dbl> …
## $ price_X675 <dbl> …
## $ price_X676 <dbl> …
## $ price_X678 <dbl> …
## $ price_X680 <dbl> …
## $ price_X690 <dbl> …
## $ price_X693 <dbl> …
## $ price_X695 <dbl> …
## $ price_X700 <dbl> …
## $ price_X705 <dbl> …
## $ price_X709 <dbl> …
## $ price_X716 <dbl> …
## $ price_X718 <dbl> …
## $ price_X725 <dbl> …
## $ price_X726 <dbl> …
## $ price_X728 <dbl> …
## $ price_X729 <dbl> …
## $ price_X730 <dbl> …
## $ price_X735 <dbl> …
## $ price_X745 <dbl> …
## $ price_X750 <dbl> …
## $ price_X755 <dbl> …
## $ price_X758 <dbl> …
## $ price_X760 <dbl> …
## $ price_X770 <dbl> …
## $ price_X772 <dbl> …
## $ price_X774 <dbl> …
## $ price_X777 <dbl> …
## $ price_X785 <dbl> …
## $ price_X790 <dbl> …
## $ price_X795 <dbl> …
## $ price_X796 <dbl> …
## $ price_X800 <dbl> …
## $ price_X810 <dbl> …
## $ price_X820 <dbl> …
## $ price_X825 <dbl> …
## $ price_X830 <dbl> …
## $ price_X840 <dbl> …
## $ price_X841 <dbl> …
## $ price_X844 <dbl> …
## $ price_X845 <dbl> …
## $ price_X855 <dbl> …
## $ price_X860 <dbl> …
## $ price_X865 <dbl> …
## $ price_X870 <dbl> …
## $ price_X875 <dbl> …
## $ price_X878 <dbl> …
## $ price_X885 <dbl> …
## $ price_X890 <dbl> …
## $ price_X892 <dbl> …
## $ price_X895 <dbl> …
## $ price_X900 <dbl> …
## $ price_X905 <dbl> …
## $ price_X906 <dbl> …
## $ price_X910 <dbl> …
## $ price_X915 <dbl> …
## $ price_X920 <dbl> …
## $ price_X925 <dbl> …
## $ price_X930 <dbl> …
## $ price_X939 <dbl> …
## $ price_X940 <dbl> …
## $ price_X943.5 <dbl> …
## $ price_X944 <dbl> …
## $ price_X945 <dbl> …
## $ price_X950 <dbl> …
## $ price_X952 <dbl> …
## $ price_X960 <dbl> …
## $ price_X965 <dbl> …
## $ price_X975 <dbl> …
## $ price_X978 <dbl> …
## $ price_X980 <dbl> …
## $ price_X990 <dbl> …
## $ price_X995 <dbl> …
## $ price_X1000 <dbl> …
## $ price_X1002 <dbl> …
## $ price_X1020 <dbl> …
## $ price_X1030 <dbl> …
## $ price_X1035 <dbl> …
## $ price_X1036 <dbl> …
## $ price_X1039 <dbl> …
## $ price_X1044 <dbl> …
## $ price_X1045 <dbl> …
## $ price_X1055 <dbl> …
## $ price_X1060 <dbl> …
## $ price_X1075 <dbl> …
## $ price_X1080 <dbl> …
## $ price_X1081 <dbl> …
## $ price_X1085 <dbl> …
## $ price_X1090 <dbl> …
## $ price_X1095 <dbl> …
## $ price_X1100 <dbl> …
## $ price_X1105 <dbl> …
## $ price_X1110 <dbl> …
## $ price_X1116 <dbl> …
## $ price_X1123 <dbl> …
## $ price_X1125 <dbl> …
## $ price_X1128 <dbl> …
## $ price_X1137 <dbl> …
## $ price_X1140 <dbl> …
## $ price_X1145 <dbl> …
## $ price_X1150 <dbl> …
## $ price_X1155 <dbl> …
## $ price_X1160 <dbl> …
## $ price_X1174 <dbl> …
## $ price_X1176 <dbl> …
## $ price_X1181 <dbl> …
## $ price_X1195 <dbl> …
## $ price_X1196 <dbl> …
## $ price_X1200 <dbl> …
## $ price_X1210 <dbl> …
## $ price_X1215 <dbl> …
## $ price_X1218 <dbl> …
## $ price_X1220 <dbl> …
## $ price_X1225 <dbl> …
## $ price_X1235 <dbl> …
## $ price_X1238 <dbl> …
## $ price_X1240 <dbl> …
## $ price_X1245 <dbl> …
## $ price_X1247 <dbl> …
## $ price_X1248 <dbl> …
## $ price_X1250 <dbl> …
## $ price_X1255 <dbl> …
## $ price_X1259 <dbl> …
## $ price_X1260 <dbl> …
## $ price_X1260.5 <dbl> …
## $ price_X1265 <dbl> …
## $ price_X1268 <dbl> …
## $ price_X1276 <dbl> …
## $ price_X1280 <dbl> …
## $ price_X1290 <dbl> …
## $ price_X1294 <dbl> …
## $ price_X1295 <dbl> …
## $ price_X1300 <dbl> …
## $ price_X1301 <dbl> …
## $ price_X1305 <dbl> …
## $ price_X1311 <dbl> …
## $ price_X1315 <dbl> …
## $ price_X1320 <dbl> …
## $ price_X1324 <dbl> …
## $ price_X1330 <dbl> …
## $ price_X1335 <dbl> …
## $ price_X1340 <dbl> …
## $ price_X1345 <dbl> …
## $ price_X1350 <dbl> …
## $ price_X1355 <dbl> …
## $ price_X1356 <dbl> …
## $ price_X1360 <dbl> …
## $ price_X1370 <dbl> …
## $ price_X1380 <dbl> …
## $ price_X1385 <dbl> …
## $ price_X1388 <dbl> …
## $ price_X1389 <dbl> …
## $ price_X1390 <dbl> …
## $ price_X1391 <dbl> …
## $ price_X1395 <dbl> …
## $ price_X1400 <dbl> …
## $ price_X1425 <dbl> …
## $ price_X1445 <dbl> …
## $ price_X1468 <dbl> …
## $ price_X1469 <dbl> …
## $ price_X1470 <dbl> …
## $ price_X1480 <dbl> …
## $ price_X1490 <dbl> …
## $ price_X1495 <dbl> …
## $ price_X1499 <dbl> …
## $ price_X1500 <dbl> …
## $ price_X1510 <dbl> …
## $ price_X1516 <dbl> …
## $ price_X1518 <dbl> …
## $ price_X1520 <dbl> …
## $ price_X1525 <dbl> …
## $ price_X1538 <dbl> …
## $ price_X1540 <dbl> …
## $ price_X1545 <dbl> …
## $ price_X1550 <dbl> …
## $ price_X1560 <dbl> …
## $ price_X1570 <dbl> …
## $ price_X1575 <dbl> …
## $ price_X1578 <dbl> …
## $ price_X1580 <dbl> …
## $ price_X1581 <dbl> …
## $ price_X1585 <dbl> …
## $ price_X1588 <dbl> …
## $ price_X1590 <dbl> …
## $ price_X1595 <dbl> …
## $ price_X1596 <dbl> …
## $ price_X1600 <dbl> …
## $ price_X1600.5 <dbl> …
## $ price_X1606 <dbl> …
## $ price_X1610 <dbl> …
## $ price_X1611 <dbl> …
## $ price_X1620 <dbl> …
## $ price_X1629 <dbl> …
## $ price_X1635 <dbl> …
## $ price_X1640 <dbl> …
## $ price_X1645 <dbl> …
## $ price_X1650 <dbl> …
## $ price_X1660 <dbl> …
## $ price_X1668 <dbl> …
## $ price_X1670 <dbl> …
## $ price_X1675 <dbl> …
## $ price_X1676 <dbl> …
## $ price_X1680 <dbl> …
## $ price_X1685 <dbl> …
## $ price_X1690 <dbl> …
## $ price_X1695 <dbl> …
## $ price_X1700 <dbl> …
## $ price_X1710 <dbl> …
## $ price_X1719 <dbl> …
## $ price_X1725 <dbl> …
## $ price_X1735 <dbl> …
## $ price_X1735.5 <dbl> …
## $ price_X1740 <dbl> …
## $ price_X1745 <dbl> …
## $ price_X1750 <dbl> …
## $ price_X1757 <dbl> …
## $ price_X1760 <dbl> …
## $ price_X1765 <dbl> …
## $ price_X1767 <dbl> …
## $ price_X1770 <dbl> …
## $ price_X1772.5 <dbl> …
## $ price_X1773 <dbl> …
## $ price_X1790 <dbl> …
## $ price_X1795 <dbl> …
## $ price_X1796 <dbl> …
## $ price_X1800 <dbl> …
## $ price_X1815 <dbl> …
## $ price_X1820 <dbl> …
## $ price_X1824.5 <dbl> …
## $ price_X1830 <dbl> …
## $ price_X1835 <dbl> …
## $ price_X1836 <dbl> …
## $ price_X1838 <dbl> …
## $ price_X1840 <dbl> …
## $ price_X1845 <dbl> …
## $ price_X1848 <dbl> …
## $ price_X1850 <dbl> …
## $ price_X1860 <dbl> …
## $ price_X1870 <dbl> …
## $ price_X1880 <dbl> …
## $ price_X1890 <dbl> …
## $ price_X1895 <dbl> …
## $ price_X1899.5 <dbl> …
## $ price_X1900 <dbl> …
## $ price_X1940 <dbl> …
## $ price_X1948 <dbl> …
## $ price_X1950 <dbl> …
## $ price_X1960 <dbl> …
## $ price_X1970 <dbl> …
## $ price_X1980 <dbl> …
## $ price_X1990 <dbl> …
## $ price_X1991 <dbl> …
## $ price_X1995 <dbl> …
## $ price_X1996 <dbl> …
## $ price_X2016 <dbl> …
## $ price_X2020 <dbl> …
## $ price_X2025 <dbl> …
## $ price_X2034 <dbl> …
## $ price_X2045 <dbl> …
## $ price_X2055 <dbl> …
## $ price_X2070 <dbl> …
## $ price_X2074 <dbl> …
## $ price_X2100 <dbl> …
## $ price_X2111 <dbl> …
## $ price_X2125 <dbl> …
## $ price_X2140 <dbl> …
## $ price_X2156 <dbl> …
## $ price_X2160.4 <dbl> …
## $ price_X2163.5 <dbl> …
## $ price_X2170 <dbl> …
## $ price_X2185 <dbl> …
## $ price_X2187 <dbl> …
## $ price_X2190 <dbl> …
## $ price_X2195 <dbl> …
## $ price_X2200 <dbl> …
## $ price_X2205.5 <dbl> …
## $ price_X2210 <dbl> …
## $ price_X2235 <dbl> …
## $ price_X2236 <dbl> …
## $ price_X2246 <dbl> …
## $ price_X2250 <dbl> …
## $ price_X2255 <dbl> …
## $ price_X2265 <dbl> …
## $ price_X2270 <dbl> …
## $ price_X2275 <dbl> …
## $ price_X2290 <dbl> …
## $ price_X2295 <dbl> …
## $ price_X2296 <dbl> …
## $ price_X2300 <dbl> …
## $ price_X2307 <dbl> …
## $ price_X2320 <dbl> …
## $ price_X2330 <dbl> …
## $ price_X2346 <dbl> …
## $ price_X2350 <dbl> …
## $ price_X2358 <dbl> …
## $ price_X2370 <dbl> …
## $ price_X2380 <dbl> …
## $ price_X2384 <dbl> …
## $ price_X2385 <dbl> …
## $ price_X2395 <dbl> …
## $ price_X2396 <dbl> …
## $ price_X2410 <dbl> …
## $ price_X2412 <dbl> …
## $ price_X2415 <dbl> …
## $ price_X2450 <dbl> …
## $ price_X2470 <dbl> …
## $ price_X2495 <dbl> …
## $ price_X2500 <dbl> …
## $ price_X2505 <dbl> …
## $ price_X2515 <dbl> …
## $ price_X2525 <dbl> …
## $ price_X2534.5 <dbl> …
## $ price_X2545 <dbl> …
## $ price_X2576 <dbl> …
## $ price_X2580 <dbl> …
## $ price_X2595 <dbl> …
## $ price_X2600 <dbl> …
## $ price_X2600.5 <dbl> …
## $ price_X2605 <dbl> …
## $ price_X2610 <dbl> …
## $ price_X2620 <dbl> …
## $ price_X2635 <dbl> …
## $ price_X2645 <dbl> …
## $ price_X2650 <dbl> …
## $ price_X2665 <dbl> …
## $ price_X2666 <dbl> …
## $ price_X2690 <dbl> …
## $ price_X2695 <dbl> …
## $ price_X2696 <dbl> …
## $ price_X2697 <dbl> …
## $ price_X2700 <dbl> …
## $ price_X2710 <dbl> …
## $ price_X2730 <dbl> …
## $ price_X2740 <dbl> …
## $ price_X2770 <dbl> …
## $ price_X2775 <dbl> …
## $ price_X2792.8 <dbl> …
## $ price_X2794 <dbl> …
## $ price_X2795 <dbl> …
## $ price_X2800 <dbl> …
## $ price_X2805 <dbl> …
## $ price_X2832 <dbl> …
## $ price_X2865 <dbl> …
## $ price_X2895 <dbl> …
## $ price_X2905 <dbl> …
## $ price_X2932 <dbl> …
## $ price_X2940 <dbl> …
## $ price_X2945 <dbl> …
## $ price_X2950 <dbl> …
## $ price_X2960 <dbl> …
## $ price_X2975 <dbl> …
## $ price_X2980 <dbl> …
## $ price_X2990 <dbl> …
## $ price_X2995 <dbl> …
## $ price_X3032 <dbl> …
## $ price_X3035 <dbl> …
## $ price_X3055 <dbl> …
## $ price_X3100 <dbl> …
## $ price_X3108 <dbl> …
## $ price_X3110 <dbl> …
## $ price_X3113 <dbl> …
## $ price_X3115 <dbl> …
## $ price_X3120 <dbl> …
## $ price_X3140 <dbl> …
## $ price_X3145 <dbl> …
## $ price_X3155 <dbl> …
## $ price_X3162 <dbl> …
## $ price_X3190 <dbl> …
## $ price_X3196 <dbl> …
## $ price_X3206 <dbl> …
## $ price_X3215 <dbl> …
## $ price_X3222 <dbl> …
## $ price_X3227 <dbl> …
## $ price_X3240 <dbl> …
## $ price_X3275 <dbl> …
## $ price_X3310 <dbl> …
## $ price_X3339 <dbl> …
## $ price_X3340 <dbl> …
## $ price_X3355 <dbl> …
## $ price_X3385 <dbl> …
## $ price_X3388 <dbl> …
## $ price_X3394 <dbl> …
## $ price_X3410 <dbl> …
## $ price_X3435 <dbl> …
## $ price_X3460 <dbl> …
## $ price_X3493 <dbl> …
## $ price_X3495 <dbl> …
## $ price_X3500 <dbl> …
## $ price_X3535 <dbl> …
## $ price_X3540 <dbl> …
## $ price_X3560 <dbl> …
## $ price_X3564 <dbl> …
## $ price_X3590 <dbl> …
## $ price_X3595 <dbl> …
## $ price_X3635 <dbl> …
## $ price_X3675 <dbl> …
## $ price_X3680 <dbl> …
## $ price_X3695 <dbl> …
## $ price_X3746 <dbl> …
## $ price_X3760 <dbl> …
## $ price_X3775 <dbl> …
## $ price_X3781 <dbl> …
## $ price_X3800 <dbl> …
## $ price_X3805 <dbl> …
## $ price_X3845 <dbl> …
## $ price_X3875 <dbl> …
## $ price_X3885 <dbl> …
## $ price_X3896 <dbl> …
## $ price_X3900 <dbl> …
## $ price_X3905 <dbl> …
## $ price_X3908 <dbl> …
## $ price_X3925 <dbl> …
## $ price_X3935 <dbl> …
## $ price_X3960 <dbl> …
## $ price_X3985 <dbl> …
## $ price_X3986 <dbl> …
## $ price_X4010 <dbl> …
## $ price_X4040 <dbl> …
## $ price_X4070 <dbl> …
## $ price_X4100 <dbl> …
## $ price_X4120 <dbl> …
## $ price_X4175 <dbl> …
## $ price_X4185 <dbl> …
## $ price_X4190 <dbl> …
## $ price_X4200 <dbl> …
## $ price_X4215 <dbl> …
## $ price_X4220 <dbl> …
## $ price_X4260 <dbl> …
## $ price_X4265 <dbl> …
## $ price_X4270 <dbl> …
## $ price_X4295 <dbl> …
## $ price_X4305 <dbl> …
## $ price_X4320 <dbl> …
## $ price_X4335 <dbl> …
## $ price_X4345 <dbl> …
## $ price_X4390 <dbl> …
## $ price_X4495 <dbl> …
## $ price_X4540 <dbl> …
## $ price_X4545 <dbl> …
## $ price_X4580 <dbl> …
## $ price_X4585 <dbl> …
## $ price_X4604 <dbl> …
## $ price_X4645 <dbl> …
## $ price_X4695 <dbl> …
## $ price_X4740 <dbl> …
## $ price_X4770 <dbl> …
## $ price_X4785 <dbl> …
## $ price_X4790 <dbl> …
## $ price_X4800 <dbl> …
## $ price_X4805 <dbl> …
## $ price_X4841 <dbl> …
## $ price_X4865 <dbl> …
## $ price_X4870 <dbl> …
## $ price_X4935 <dbl> …
## $ price_X5040 <dbl> …
## $ price_X5144 <dbl> …
## $ price_X5145 <dbl> …
## $ price_X5240 <dbl> …
## $ price_X5260 <dbl> …
## $ price_X5290 <dbl> …
## $ price_X5300 <dbl> …
## $ price_X5345 <dbl> …
## $ price_X5380 <dbl> …
## $ price_X5428 <dbl> …
## $ price_X5436 <dbl> …
## $ price_X5500 <dbl> …
## $ price_X5530 <dbl> …
## $ price_X5553 <dbl> …
## $ price_X5600 <dbl> …
## $ price_X5700 <dbl> …
## $ price_X5780 <dbl> …
## $ price_X5800 <dbl> …
## $ price_X5810 <dbl> …
## $ price_X5840 <dbl> …
## $ price_X5945 <dbl> …
## $ price_X5965 <dbl> …
## $ price_X5990 <dbl> …
## $ price_X5995 <dbl> …
## $ price_X6000 <dbl> …
## $ price_X6030 <dbl> …
## $ price_X6065 <dbl> …
## $ price_X6110 <dbl> …
## $ price_X6160 <dbl> …
## $ price_X6228 <dbl> …
## $ price_X6295 <dbl> …
## $ price_X6400 <dbl> …
## $ price_X6440 <dbl> …
## $ price_X6480 <dbl> …
## $ price_X6545 <dbl> …
## $ price_X6575 <dbl> …
## $ price_X6585 <dbl> …
## $ price_X6680 <dbl> …
## $ price_X6805 <dbl> …
## $ price_X6895 <dbl> …
## $ price_X7400 <dbl> …
## $ price_X7610 <dbl> …
## $ price_X7748 <dbl> …
## $ price_X7765 <dbl> …
## $ price_X7785 <dbl> …
## $ price_X7873 <dbl> …
## $ price_X8240 <dbl> …
## $ price_X8295 <dbl> …
## $ price_X8395 <dbl> …
## $ price_X8900 <dbl> …
## $ price_X9585 <dbl> …
## $ old_price_SR.1.180 <dbl> …
## $ old_price_SR.1.225 <dbl> …
## $ old_price_SR.1.277 <dbl> …
## $ old_price_SR.1.300 <dbl> …
## $ old_price_SR.1.325 <dbl> …
## $ old_price_SR.1.345 <dbl> …
## $ old_price_SR.1.420 <dbl> …
## $ old_price_SR.1.450 <dbl> …
## $ old_price_SR.1.505 <dbl> …
## $ old_price_SR.1.525 <dbl> …
## $ old_price_SR.1.570 <dbl> …
## $ old_price_SR.1.580 <dbl> …
## $ old_price_SR.1.620 <dbl> …
## $ old_price_SR.1.650 <dbl> …
## $ old_price_SR.1.655 <dbl> …
## $ old_price_SR.1.735 <dbl> …
## $ old_price_SR.1.785 <dbl> …
## $ old_price_SR.1.835 <dbl> …
## $ old_price_SR.1.865 <dbl> …
## $ old_price_SR.10.4.pack <dbl> …
## $ old_price_SR.105 <dbl> …
## $ old_price_SR.138 <dbl> …
## $ old_price_SR.145 <dbl> …
## $ old_price_SR.179 <dbl> …
## $ old_price_SR.2.010 <dbl> …
## $ old_price_SR.2.050 <dbl> …
## $ old_price_SR.2.090 <dbl> …
## $ old_price_SR.2.095 <dbl> …
## $ old_price_SR.2.100 <dbl> …
## $ old_price_SR.2.155 <dbl> …
## $ old_price_SR.2.220 <dbl> …
## $ old_price_SR.2.270 <dbl> …
## $ old_price_SR.2.350 <dbl> …
## $ old_price_SR.2.360 <dbl> …
## $ old_price_SR.2.435 <dbl> …
## $ old_price_SR.2.495 <dbl> …
## $ old_price_SR.2.525 <dbl> …
## $ old_price_SR.2.605 <dbl> …
## $ old_price_SR.2.760 <dbl> …
## $ old_price_SR.2.900 <dbl> …
## $ old_price_SR.205 <dbl> …
## $ old_price_SR.225 <dbl> …
## $ old_price_SR.232 <dbl> …
## $ old_price_SR.237 <dbl> …
## $ old_price_SR.27 <dbl> …
## $ old_price_SR.275 <dbl> …
## $ old_price_SR.295 <dbl> …
## $ old_price_SR.3.208 <dbl> …
## $ old_price_SR.3.250 <dbl> …
## $ old_price_SR.3.375 <dbl> …
## $ old_price_SR.3.425 <dbl> …
## $ old_price_SR.3.435 <dbl> …
## $ old_price_SR.3.490 <dbl> …
## $ old_price_SR.3.500 <dbl> …
## $ old_price_SR.3.665 <dbl> …
## $ old_price_SR.30 <dbl> …
## $ old_price_SR.310 <dbl> …
## $ old_price_SR.340 <dbl> …
## $ old_price_SR.345 <dbl> …
## $ old_price_SR.375 <dbl> …
## $ old_price_SR.395 <dbl> …
## $ old_price_SR.4.235 <dbl> …
## $ old_price_SR.4.490 <dbl> …
## $ old_price_SR.4.495 <dbl> …
## $ old_price_SR.400 <dbl> …
## $ old_price_SR.420 <dbl> …
## $ old_price_SR.425 <dbl> …
## $ old_price_SR.432 <dbl> …
## $ old_price_SR.446 <dbl> …
## $ old_price_SR.475 <dbl> …
## $ old_price_SR.5.275 <dbl> …
## $ old_price_SR.5.640 <dbl> …
## $ old_price_SR.5.975 <dbl> …
## $ old_price_SR.50 <dbl> …
## $ old_price_SR.505 <dbl> …
## $ old_price_SR.530 <dbl> …
## $ old_price_SR.545 <dbl> …
## $ old_price_SR.557 <dbl> …
## $ old_price_SR.570 <dbl> …
## $ old_price_SR.575 <dbl> …
## $ old_price_SR.595 <dbl> …
## $ old_price_SR.6.530 <dbl> …
## $ old_price_SR.6.625 <dbl> …
## $ old_price_SR.6.785 <dbl> …
## $ old_price_SR.6.875 <dbl> …
## $ old_price_SR.625 <dbl> …
## $ old_price_SR.640 <dbl> …
## $ old_price_SR.645 <dbl> …
## $ old_price_SR.655 <dbl> …
## $ old_price_SR.657 <dbl> …
## $ old_price_SR.671 <dbl> …
## $ old_price_SR.690 <dbl> …
## $ old_price_SR.695 <dbl> …
## $ old_price_SR.7.785 <dbl> …
## $ old_price_SR.730 <dbl> …
## $ old_price_SR.752 <dbl> …
## $ old_price_SR.765 <dbl> …
## $ old_price_SR.776 <dbl> …
## $ old_price_SR.795 <dbl> …
## $ old_price_SR.8.350 <dbl> …
## $ old_price_SR.892 <dbl> …
## $ old_price_SR.895 <dbl> …
## $ old_price_SR.90 <dbl> …
## $ old_price_SR.910 <dbl> …
## $ old_price_SR.925 <dbl> …
## $ old_price_SR.95 <dbl> …
## $ old_price_SR.965 <dbl> …
## $ old_price_SR.977 <dbl> …
## $ old_price_SR.981 <dbl> …
## $ old_price_SR.995 <dbl> …
## $ link_https...www.ikea.com.sa.en.p.aepplaroe.2.seat.modular.sofa.outdoor.brown.stained.kungsoe.white.white.s09227532. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.aepplaroe.3.seat.modular.sofa.outdoor.with.footstool.brown.stained.brown.stained.froesoen.duvholmen.beige.s29267334. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.aepplaroe.bench.with.backrest.outdoor.brown.stained.brown.80208529. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.aepplaroe.chair.outdoor.foldable.brown.stained.40413131. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.aepplaroe.wall.panel.gate.leg.table.outdoor.brown.stained.s49054015. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.agam.junior.chair.black.70253541. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.agam.junior.chair.white.90253535. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.alex.desk.blue.90409607. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.alex.drawer.unit.blue.40410340. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.alex.drawer.unit.white.10192824. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.alex.drawer.unit.with.9.drawers.white.50192822. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.algot.2.sections.shelves.black.s29285470. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.algot.3.sections.shelves.black.s89285518. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.algot.mesh.basket.white.10218517. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.algot.shelving.unit.black.s89285467. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.algot.skadis.wall.upright.shelves.rod.s19276414. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.algot.wall.upright.shelves.drying.rack.white.s39903833. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.algot.wall.upright.shelves.rod.white.s09903820. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.algot.wall.upright.shelves.rod.white.s79276246. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.algot.wall.upright.shelves.white.s19930205. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.algot.wall.upright.shelves.white.s39311765. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.algot.wall.upright.shelves.white.s39903791. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.algot.wall.upright.shelves.white.s49017749. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.algot.wall.upright.shelves.white.s69903799. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.angersby.2.seat.sofa.knisa.light.grey.10469186. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.antilop.highchair.with.safety.belt.white.silver.colour.s89041709. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.antilop.highchair.with.tray.silver.colour.white.silver.colour.s29067293. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.askeby.two.seat.sofa.bed.black.70284203. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.askvoll.chest.of.3.drawers.white.stained.oak.effect.white.20270802. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.askvoll.chest.of.5.drawers.white.stained.oak.effect.white.50391143. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.balsberget.chair.frame.swivel.white.80308675. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.baltsar.chair.black.blue.brown.10413137. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.bekant.shelving.unit.black.10373495. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.bekant.storage.unit.on.castors.mesh.black.s29282532. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.bekant.storage.unit.on.castors.mesh.white.s09282547. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.bekant.storage.unit.on.castors.mesh.white.s79282426. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.bekant.storage.unit.on.legs.mesh.black.s69282399. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.bekant.storage.unit.on.legs.mesh.white.s09282528. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.bekant.storage.unit.with.smart.lock.mesh.black.s29286931. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.bekant.storage.unit.with.smart.lock.mesh.black.s79286896. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.bekant.storage.unit.with.smart.lock.mesh.white.s79286820. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.bekant.storage.unit.with.smart.lock.mesh.white.s89286513. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.bekvaem.step.stool.beech.60178887. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.bekvaem.step.stool.black.30178884. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.bekvaem.step.stool.white.40178888. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.benarp.armchair.skiftebo.yellow.40319398. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.bernhard.bar.stool.with.backrest.chrome.plated.mjuk.kavat.white.00272656. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.besta.burs.tv.bench.high.gloss.white.30269129. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.besta.cabinet.unit.grey.stained.walnut.effect.s99285004. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.besta.drawer.frame.black.brown.00351248. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.besta.drawer.frame.black.brown.40351246. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.besta.drawer.frame.grey.stained.walnut.effect.20351515. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.besta.eket.cabinet.combination.for.tv.white.grey.stained.walnut.effect.s59204420. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.besta.eket.cabinet.combination.for.tv.white.light.grey.red.s29286865. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.besta.eket.cabinet.combination.for.tv.white.s29204431. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.besta.frame.black.brown.20245964. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.besta.frame.black.brown.60245957. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.besta.frame.black.brown.70245952. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.besta.frame.grey.stained.walnut.effect.30247378. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.besta.frame.grey.stained.walnut.effect.30247415. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.besta.frame.grey.stained.walnut.effect.60247409. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.besta.frame.grey.stained.walnut.effect.70247376. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.besta.storage.combination.w.doors.drawers.black.brown.hanviken.stubbarp.black.brown.clear.glass.s79301788. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.besta.storage.combination.w.doors.drawers.grey.stained.walnut.effect.lappviken.stubbarp.grey.stained.walnut.eff.clear.glass.s39301785. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.besta.storage.combination.w.glass.doors.black.brown.selsviken.dark.red.brown.clear.glass.s49300827. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.besta.storage.combination.w.glass.doors.black.brown.vassviken.white.clear.glass.s19282919. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.besta.storage.combination.w.glass.doors.grey.stained.walnut.effect.lappviken.grey.stained.walnut.eff.clear.glass.s29300852. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.besta.storage.combination.w.glass.doors.grey.stained.walnut.effect.notviken.blue.clear.glass.s99300839. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.besta.storage.combination.w.glass.doors.grey.stained.walnut.effect.vassviken.white.clear.glass.s19282924. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.besta.storage.combination.w.glass.doors.white.sindvik.stallarp.white.clear.glass.s59301483. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.besta.storage.combination.w.glass.doors.white.vassviken.white.clear.glass.s69282926. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.besta.storage.combination.with.doors.black.brown.lappviken.light.grey.clear.glass.s69208031. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.besta.storage.combination.with.doors.black.brown.lappviken.sindvik.black.brown.clear.glass.s69208026. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.besta.storage.combination.with.doors.black.brown.riksviken.stubbarp.light.bronze.effect.s29302573. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.besta.storage.combination.with.doors.lappviken.grey.stained.walnut.effect.s09139724. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.besta.storage.combination.with.doors.white.kallviken.stubbarp.concrete.effect.s09305068. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.besta.storage.combination.with.doors.white.lappviken.light.grey.s79205536. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.besta.storage.combination.with.doors.white.lappviken.sindvik.white.clear.glass.s09208029. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.besta.storage.combination.with.doors.white.lappviken.stubbarp.white.s29301762. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.besta.tv.bench.black.brown.40299885. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.besta.tv.bench.black.brown.70294508. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.besta.tv.bench.black.brown.lappviken.black.brown.clear.glass.s49329331. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.besta.tv.bench.grey.stained.walnut.effect.10299877. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.besta.tv.bench.white.40299890. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.besta.tv.bench.white.70299879. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.besta.tv.bench.with.doors.and.drawers.black.brown.hanviken.stubbarp.black.brown.s79297526. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.besta.tv.bench.with.doors.black.brown.selsviken.high.gloss.dark.red.brown.s59299244. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.besta.tv.bench.with.doors.grey.stained.walnut.effect.kallviken.stubbarp.dark.grey.concrete.effect.s09276650. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.besta.tv.bench.with.doors.hanviken.black.brown.hanviken.stubbarp.black.brown.s09068316. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.besta.tv.bench.with.drawers.grey.stained.walnut.effect.lappviken.stallarp.grey.stained.walnut.eff.clear.glass.s59276266. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.besta.tv.storage.combination.glass.doors.black.brown.hanviken.black.brown.clear.glass.s59299381. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.besta.tv.storage.combination.glass.doors.black.brown.lappviken.light.grey.clear.glass.s49203355. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.besta.tv.storage.combination.glass.doors.black.brown.selsviken.dark.red.brown.clear.glass.s89299129. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.besta.tv.storage.combination.glass.doors.grey.stained.walnut.effect.lappviken.light.grey.clear.glass.s29203115. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.besta.tv.storage.combination.glass.doors.lappviken.sindvik.black.brown.clear.glass.s09192518. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.besta.tv.storage.combination.grey.stained.walnut.effect.lappviken.notviken.stubbarp.grey.green.s89302971. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.besta.wall.cabinet.with.2.doors.lappviken.black.brown.s19057906. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.besta.wall.cabinet.with.2.doors.lappviken.white.s19057483. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.besta.wall.mounted.cabinet.combination.black.brown.riksviken.light.bronze.effect.s69301717. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.besta.wall.mounted.cabinet.combination.grey.stained.walnut.effect.lappviken.grey.stained.walnut.effect.s29301743. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.billy.bookcase.black.brown.s89020472. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.billy.bookcase.brown.ash.veneer.s09177626. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.billy.bookcase.combination.hght.extension.black.brown.s39230712. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.billy.bookcase.white.00263850. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.billy.bookcase.white.s89017827. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.billy.bookcase.with.glass.doors.dark.red.80385616. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.billy.bookcase.with.panel.glass.doors.white.s69281776. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.billy.bottna.bookcase.with.display.shelf.white.beige.s19277116. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.billy.bottna.bookcase.with.display.shelf.white.beige.s59277119. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.billy.bottna.bookcase.with.display.shelf.white.beige.s89277113. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.billy.gnedby.bookcase.black.brown.s99020476. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.billy.morliden.bookcase.white.s69017833. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.billy.morliden.bookcase.with.glass.door.white.glass.s39287379. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.billy.morliden.bookcase.with.glass.doors.brown.ash.veneer.glass.s39292026. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.billy.morliden.bookcase.with.glass.doors.white.glass.s29287370. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.billy.oxberg.bookcase.black.brown.glass.s89217727. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.billy.oxberg.bookcase.black.brown.s99020481. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.billy.oxberg.bookcase.brown.ash.veneer.s59177624. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.billy.oxberg.bookcase.w.height.extension.ut.drs.white.s49280754. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.billy.oxberg.bookcase.white.glass.s89017832. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.billy.oxberg.bookcase.white.s69017828. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.billy.oxberg.bookcase.with.door.white.s69287392. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.billy.oxberg.bookcase.with.doors.white.s29281066. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.billy.oxberg.bookcase.with.doors.white.s49280042. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.billy.oxberg.bookcase.with.glass.doors.white.s69281804. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.billy.oxberg.bookcase.with.panel.glass.door.brown.ash.veneer.glass.s09287413. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.billy.oxberg.bookcase.with.panel.glass.doors.brown.ash.veneer.s29280731. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.bjoerksnaes.chest.of.5.drawers.birch.70407299. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.blames.highchair.with.tray.black.50165079. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.boerje.chair.brown.gobo.white.20182278. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.boerje.chair.white.kungsvik.sand.90211531. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.braeda.laptop.support.black.60150176. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.brathult.3.seat.sofa.borred.grey.green.s59217804. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.brathult.corner.sofa.bed.borred.grey.green.s09217849. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.brimnes.bed.frame.with.storage.white.s79902935. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.brimnes.chest.of.3.drawers.white.frosted.glass.00392041. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.brimnes.day.bed.frame.with.2.drawers.white.00228705. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.brimnes.glass.door.cabinet.black.10409871. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.brimnes.headboard.with.storage.compartment.white.20228709. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.brimnes.tv.bench.white.40337694. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.brimnes.tv.storage.combination.glass.doors.white.s59278232. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.brimnes.tv.storage.combination.glass.doors.white.s99278225. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.bror.cabinet.with.2.doors.black.50300015. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.bror.hook.for.post.black.50343147. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.bror.shelving.unit.white.s49303958. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.bror.shelving.unit.white.s89303956. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.bror.shelving.unit.white.s99303970. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.bror.shelving.unit.with.cabinets.black.s89272709. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.broringe.underframe.chrome.plated.10288628. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.brusali.bookcase.brown.70302283. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.brusali.cabinet.with.doors.brown.00302291. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.brusali.desk.brown.30302299. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.brusali.tv.bench.brown.10306613. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.bryggja.storage.unit.dark.grey.90421911. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.bunsoe.childrens.easy.chair.outdoor.white.90287413. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.buskbo.armchair.rattan.70434311. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.busunge.chest.of.2.drawers.light.pink.20229011. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.busunge.chest.of.2.drawers.white.60305705. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.busunge.wardrobe.light.pink.80229008. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.busunge.wardrobe.white.20305707. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.delaktig.chaise.longue.with.armrest.gunnared.light.brown.pink.s09289327. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.delaktig.platform.armchair.gunnared.beige.s49289047. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.dietmar.underframe.for.chair.with.armrests.chrome.plated.70288630. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.ekedalen.bar.stool.with.backrest.brown.orrsta.light.grey.00400550. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.ekedalen.bar.stool.with.backrest.dark.brown.orrsta.light.grey.10400540. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.ekedalen.chair.brown.orrsta.light.grey.80341019. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.ekeroe.armchair.kimstad.laglig.black.60262881. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.eket.cabinet.combination.with.feet.dark.grey.s59191026. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.eket.cabinet.combination.with.feet.dark.grey.s69190861. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.eket.cabinet.combination.with.feet.white.light.grey.s19221087. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.eket.cabinet.combination.with.feet.white.stained.oak.effect.s79306875. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.eket.cabinet.combination.with.feet.white.white.stained.oak.effect.s79286491. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.eket.cabinet.combination.with.legs.golden.brown.s79286434. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.eket.cabinet.w.2.doors.and.1.shelf.white.20333951. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.eket.cabinet.w.2.doors.and.2.shelves.white.30334605. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.eket.cabinet.w.door.and.1.shelf.white.90333938. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.eket.cabinet.w.door.and.2.shelves.dark.grey.00344941. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.eket.cabinet.with.2.drawers.white.30428915. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.eket.cabinet.with.3.drawers.dark.grey.70344933. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.eket.suspension.rail.00340047. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.eket.underframe.birch.80349001. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.eket.underframe.birch.90334612. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.eket.wall.cabinet.with.2.drawers.white.s69329387. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.eket.wall.mounted.cabinet.combination.dark.grey.s79189150. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.eket.wall.mounted.cabinet.combination.white.light.grey.dark.grey.s29286399. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.eket.wall.mounted.cabinet.combination.white.s09188842. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.eket.wall.mounted.cabinet.combination.white.s09189484. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.eket.wall.mounted.cabinet.combination.white.s19189030. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.eket.wall.mounted.cabinet.combination.white.s89307643. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.eket.wall.mounted.cabinet.combination.white.s99221026. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.eket.wall.mounted.storage.combination.light.grey.dark.grey.red.s19286390. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.ekolsund.recliner.gunnared.light.brown.pink.s59297184. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.ektorp.armchair.lofallet.beige.s79129081. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.ektorp.three.seat.sofa.nordvalla.dark.beige.s49129209. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.elvarli.1.section.white.s59157353. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.elvarli.1.section.white.s59158121. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.elvarli.1.section.white.s69157475. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.elvarli.2.sections.white.bamboo.s09157529. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.elvarli.2.sections.white.bamboo.s39187822. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.elvarli.2.sections.white.s49212067. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.ernfrid.underframe.birch.silver.colour.00287974. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.fabrikoer.glass.door.cabinet.black.blue.blue.00363171. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.fanbyn.chair.frame.brown.wood.effect.00385069. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.finnby.bookcase.black.10261129. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.fjaellbo.shelving.unit.black.50339292. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.fjaellbo.shelving.unit.black.70339291. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.fjaellbo.tv.storage.combination.black.s79191266. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.flottebo.sofa.bed.vissle.purple.s69297471. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.flottebo.sofa.bed.with.side.table.vissle.purple.s29297454. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.franklin.bar.stool.with.backrest.foldable.white.white.70404875. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.franklin.bar.stool.with.backrest.foldable.white.white.90404879. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.frekvens.bar.stool.with.backrest.in.outdoor.black.50420329. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.galant.add.on.unit.white.40206476. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.galant.cabinet.with.doors.black.stained.ash.veneer.50365139. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.galant.shelf.unit.white.stained.oak.veneer.20365188. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.galant.storage.combination.w.sliding.doors.white.stained.oak.veneer.s29285776. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.galant.storage.combination.with.drawers.black.stained.ash.veneer.s09285070. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.gamlarp.2.seat.sofa.dark.grey.70451065. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.genevad.2.seat.sofa.garlinge.dark.brown.40446985. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.glenn.bar.stool.white.chrome.plated.30135658. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.godishus.chest.of.3.drawers.white.80433486. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.godishus.wardrobe.white.50422494. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.godvin.leg.white.50200271. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.graelviken.3.seat.sofa.bed.grey.70340567. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.groenlid.1.seat.section.inseros.white.s59254641. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.groenlid.1.seat.section.kimstad.dark.brown.70397993. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.groenlid.2.seat.section.inseros.white.s29254647. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.groenlid.2.seat.sofa.bed.ljungen.dark.red.s29278101. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.groenlid.2.seat.sofa.bed.ljungen.medium.grey.s29278115. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.groenlid.2.seat.sofa.bed.section.kimstad.dark.brown.s99277240. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.groenlid.2.seat.sofa.bed.section.ljungen.dark.red.s39277196. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.groenlid.3.seat.section.kimstad.dark.brown.30397669. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.groenlid.3.seat.section.ljungen.light.green.s69256220. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.groenlid.3.seat.sofa.bed.ljungen.light.green.s69278415. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.groenlid.3.seat.sofa.bed.with.open.end.ljungen.dark.red.s29278144. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.groenlid.3.seat.sofa.with.chaise.longue.kimstad.dark.brown.s49256594. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.groenlid.4.seat.sofa.with.chaise.longue.inseros.white.s59307649. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.groenlid.4.seat.sofa.with.chaise.longues.kimstad.dark.brown.s89256605. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.groenlid.4.seat.sofa.with.chaise.longues.ljungen.medium.grey.s39256071. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.groenlid.armchair.inseros.white.s19275909. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.groenlid.armchair.kimstad.dark.brown.00399033. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.groenlid.chaise.longue.section.kimstad.dark.brown.80398628. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.groenlid.chaise.longue.section.ljungen.medium.grey.s89256035. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.groenlid.corner.section.sporda.natural.s89255639. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.groenlid.corner.sofa.3.seat.with.open.end.kimstad.dark.brown.s79256559. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.groenlid.corner.sofa.4.seat.kimstad.dark.brown.s79256564. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.groenlid.corner.sofa.5.seat.inseros.white.s79254683. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.groenlid.corner.sofa.5.seat.with.chaise.longue.kimstad.dark.brown.s59256579. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.groenlid.corner.sofa.5.seat.with.chaise.longue.ljungen.light.green.s09256256. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.groenlid.corner.sofa.bed.5.seat.with.chaise.longue.ljungen.dark.red.s49278591. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.groenlid.cover.for.corner.sofa.bed.5.seat.with.chaise.longue.ljungen.medium.grey.s79279004. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.gulliver.changing.table.white.20307037. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.gunde.folding.chair.black.00217797. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.gunde.folding.chair.white.60217799. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.haellan.storage.combination.with.doors.white.s39276682. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.haellan.storage.combination.with.doors.white.s49249396. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.haellan.storage.combination.with.doors.white.s89249399. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.haellan.storage.combination.with.doors.white.s89249403. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.haellan.storage.combination.with.doors.white.s99249520. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.hammarn.sofa.bed.knisa.dark.grey.black.90354327. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.hattefjaell.office.chair.with.armrests.gunnared.beige.white.s49252119. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.hattefjaell.office.chair.with.armrests.smidig.black.black.s89305205. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.hattefjaell.pair.of.armrests.black.00429426. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.havsta.cabinet.with.plinth.grey.50415196. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.havsta.cabinet.with.plinth.white.70388620. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.havsta.cabinet.with.plinth.white.s59275101. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.havsta.glass.door.cabinet.grey.00415194. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.havsta.glass.door.cabinet.with.plinth.grey.clear.glass.s39275116. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.havsta.storage.comb.w.sliding.glass.doors.white.s19275235. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.havsta.storage.combination.dark.brown.s89265902. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.havsta.storage.combination.w.glass.doors.dark.brown.s09265920. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.havsta.storage.combination.w.glass.doors.dark.brown.s49265975. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.havsta.storage.combination.w.glass.doors.dark.brown.s59265965. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.havsta.storage.combination.w.glass.doors.dark.brown.s99266053. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.havsta.storage.combination.white.s49265999. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.havsta.storage.combination.with.doors.dark.brown.s69265984. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.havsta.tv.storage.combination.grey.s09265883. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.havsta.tv.storage.combination.grey.s69265842. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.havsten.2.seat.sofa.in.outdoor.beige.s09251956. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.havsten.3.seat.sofa.in.outdoor.with.open.end.without.armrests.beige.s49251983. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.havsten.4.seat.sofa.in.outdoor.beige.s29252078. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.havsten.easy.chair.in.outdoor.beige.s39251931. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.havsten.supporting.stand.outdoor.beige.10404519. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.hejne.1.section.softwood.s39031411. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.helmer.drawer.unit.on.castors.black.20341970. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.hemnes.chest.of.3.drawers.white.90374274. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.hemnes.chest.of.8.drawers.white.stain.10239280. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.hemnes.day.bed.frame.with.3.drawers.white.90349326. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.hemnes.day.bed.w.3.drawers.2.mattresses.white.malfors.medium.firm.s09186112. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.hemnes.desk.with.2.drawers.white.stain.90363223. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.hemnes.open.wardrobe.white.stained.80379620. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.hemnes.wardrobe.with.2.sliding.doors.white.stain.50251270. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.henriksdal.bar.stool.with.backrest.brown.black.glose.black.90319918. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.henriksdal.bar.stool.with.backrest.brown.black.graesbo.white.s39184324. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.henriksdal.bar.stool.with.backrest.frame.dark.brown.40426138. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.henriksdal.chair.dark.brown.glose.black.00380948. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.henriksdal.chair.dark.brown.orrsta.light.grey.s49220374. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.henriksdal.chair.frame.white.00141689. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.henriksdal.chair.white.orrsta.light.grey.s19190340. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.henriksdal.chair.with.long.cover.brown.blekinge.white.s09220842. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.holmsund.three.seat.sofa.bed.orrsta.light.white.grey.s89240761. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.hyllis.shelving.unit.in.outdoor.galvanised.00278578. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.hyllis.shelving.unit.with.cover.transparent.s99291745. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.idasen.cabinet.with.sliding.glass.doors.beige.80360951. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.idasen.drawer.unit.on.castors.golden.brown.50397913. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.idasen.drawer.unit.with.smart.lock.golden.brown.s09287291. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.idasen.high.cabinet.with.smart.lock.beige.s29287214. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.ingolf.bar.stool.with.backrest.white.10122647. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.ingolf.junior.chair.antique.stain.60353838. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.ingolf.junior.chair.white.90146456. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.ivar.1.section.bottle.racks.pine.grey.s49133579. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.ivar.1.section.shelves.pine.s59248320. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.ivar.1.section.shelves.pine.s89248314. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.ivar.2.sections.shelves.cabinet.pine.s39248359. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.ivar.2.sections.shelves.pine.s29248345. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.ivar.2.sections.shelves.pine.s49248325. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.ivar.2.sections.shelves.pine.s49248354. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.ivar.2.sections.shelves.pine.s69248348. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.ivar.2.sections.shelves.pine.s79248319. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.ivar.3.sections.cabinet.shelves.pine.white.s69248211. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.ivar.3.sections.shelves.pine.s69248386. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.ivar.4.sections.shelves.pine.s09248544. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.ivar.4.sections.shelves.pine.s09251348. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.ivar.cabinet.pine.40033763. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.ivar.cabinet.with.doors.pine.white.s89248205. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.ivar.drawer.red.80450353. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.ivar.shelving.unit.black.s99315812. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.ivar.shelving.unit.pine.s69251345. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.ivar.shelving.unit.w.shelves.rails.cover.s49302874. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.ivar.shelving.unit.with.clothes.rail.s19288006. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.ivar.shelving.unit.with.clothes.rail.s89287683. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.janinge.bar.stool.white.70246089. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.janinge.chair.white.00246078. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.janinge.chair.with.armrests.white.80280515. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.janinge.chair.yellow.60246080. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.jonaxel.frame.mesh.baskets.clothes.rails.s59311463. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.jonaxel.frame.mesh.baskts.clths.rl.shlv.uts.s39311789. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.jonaxel.frame.w.bskts.clths.rl.shlv.uts.s89297663. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.jonaxel.frame.white.40419958. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.jonaxel.frame.wire.baskets.top.shelf.s09305087. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.jonaxel.frame.wire.baskets.top.shelf.s79305098. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.jonaxel.frame.wire.baskets.top.shelves.s89297677. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.jonaxel.frame.with.clothes.rail.s49311492. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.jonaxel.frame.with.mesh.baskets.castors.s49297491. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.jonaxel.frame.with.mesh.baskets.s09297488. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.jonaxel.frame.with.mesh.baskets.s59297141. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.jonaxel.frame.with.mesh.baskets.s99297144. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.jonaxel.frame.with.wire.baskets.castors.s59297438. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.jonaxel.frames.clothes.rails.shelving.units.s09306204. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.jonaxel.mesh.basket.white.20419964. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.kallax.desk.combination.white.blue.s49133616. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.kallax.insert.with.mirror.door.00423721. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.kallax.shelf.insert.light.grey.20346072. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.kallax.shelving.unit.black.brown.20409936. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.kallax.shelving.unit.white.20275814. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.kallax.shelving.unit.white.70301537. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.kallax.shelving.unit.white.green.10459903. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.kallax.shelving.unit.with.10.inserts.white.s09278338. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.kallax.shelving.unit.with.4.inserts.white.s19278328. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.kallax.shelving.unit.with.4.inserts.white.s59278307. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.kallax.shelving.unit.with.4.inserts.white.s79278250. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.kallax.shelving.unit.with.4.inserts.white.s89030584. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.kallax.shelving.unit.with.8.inserts.white.s69017475. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.karlhugo.chair.oak.nordvalla.dark.grey.80403516. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.kivik.chaise.longue.grann.bomstad.black.10198604. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.kivik.corner.sofa.5.seat.with.chaise.longue.skiftebo.dark.grey.s89305540. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.kivik.footstool.with.storage.hillared.dark.blue.s69193713. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.kivik.three.seat.sofa.hillared.dark.blue.s09193754. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.kivik.u.shaped.sofa.6.seat.orrsta.red.s49252949. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.kleppstad.wardrobe.with.2.doors.white.80437234. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.klimpen.add.on.unit.grey.light.grey.00353761. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.klimpen.drawer.unit.grey.light.grey.60353763. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.klimpen.table.leg.with.storage.grey.light.grey.10353765. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.klippan.2.seat.sofa.bomstad.black.40399314. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.knarrevik.bedside.table.black.30381183. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.knotten.standing.desk.white.birch.30299485. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.kolbjoern.cabinet.in.outdoor.beige.20345633. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.kolbjoern.cabinet.in.outdoor.beige.30409295. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.kolbjoern.shelving.unit.in.outdoor.green.40450350. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.kolbjoern.shelving.unit.with.2.cabinets.beige.s59291634. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.kolbjoern.shelving.unit.with.cabinet.beige.s09291622. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.kolbjoern.shelving.unit.with.cabinet.beige.s19291645. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.kolbjoern.shelving.unit.with.cabinet.green.s89317557. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.koppang.chest.of.3.drawers.white.10385950. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.kornsjoe.side.table.black.70455412. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.kornsjoe.storage.bench.black.90471581. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.kullen.chest.of.2.drawers.black.brown.60322130. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.kullen.chest.of.5.drawers.black.brown.40393661. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.kungshamn.1.seat.module.yttered.multicolour.s49248189. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.kungsholmen.2.seat.modular.sofa.outdoor.black.brown.kungsoe.white.s09219278. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.kungsholmen.easy.chair.outdoor.black.brown.froesoen.duvholmen.dark.grey.s49257386. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.kungsholmen.modular.corner.sofa.3.seat.outdoor.black.brown.froesoen.duvholmen.beige.s79258271. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.lack.tv.bench.white.20450087. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.landskrona.2.seat.sofa.grann.bomstad.golden.brown.metal.s19270266. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.landskrona.3.seat.sofa.grann.bomstad.golden.brown.metal.s09270295. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.landskrona.chaise.longue.add.on.unit.gunnared.light.green.wood.s49270260. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.langur.junior.chair.white.s19252615. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.langur.junior.highchair.white.s09252593. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.langur.seat.shell.for.highchair.white.10330811. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.lappland.tv.storage.unit.black.brown.30285153. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.leifarne.chair.dark.yellow.broringe.black.s09304196. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.leifarne.chair.dark.yellow.mosaic.patterned.white.broringe.white.s49304199. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.leifarne.chair.with.armrests.dark.yellow.dietmar.chrome.plated.s19304209. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.leifarne.chair.with.armrests.dark.yellow.dietmar.white.s59304207. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.leifarne.chair.with.armrests.white.dietmar.white.s59259752. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.lerberg.trestle.grey.80130776. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.lerhamn.chair.light.antique.stain.vittaryd.beige.20259423. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.liatorp.bookcase.white.00116595. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.liatorp.bookcase.with.glass.doors.white.s19028754. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.liatorp.storage.combination.with.doors.white.s19046442. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.liatorp.tv.bench.white.80116600. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.liatorp.tv.storage.combination.white.s29046045. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.lidhult.2.seat.sofa.bed.grann.bomstad.dark.brown.s39266008. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.lidhult.2.seat.sofa.bed.lejde.red.brown.red.brown.s19257076. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.lidhult.2.seat.sofa.bed.section.grann.bomstad.dark.brown.s19290603. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.lidhult.2.seat.sofa.lejde.grey.black.s79256917. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.lidhult.3.seat.section.gassebol.light.beige.s19289911. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.lidhult.3.seat.sofa.gassebol.light.beige.s49256971. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.lidhult.3.seat.sofa.with.chaise.longue.grann.bomstad.dark.brown.s29257127. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.lidhult.4.seat.sofa.with.chaise.longue.grann.bomstad.dark.brown.s99292052. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.lidhult.4.seat.sofa.with.chaise.longues.lejde.grey.black.s69257328. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.lidhult.armrest.lejde.red.brown.s19290071. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.lidhult.chaise.longue.section.grann.bomstad.dark.brown.40405876. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.lidhult.corner.sofa.bed.5.seat.lejde.grey.black.s29266184. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.lidhult.corner.sofa.bed.6.seat.with.chaise.longue.lejde.grey.black.s79277632. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.lisabo.desk.ash.veneer.30299070. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.lixhult.cabinet.combination.grey.red.s59279180. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.lixhult.cabinet.combination.grey.s19279177. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.lixhult.cabinet.metal.orange.90328668. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.lixhult.storage.combination.dark.blue.red.orange.s89248682. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.lixhult.storage.combination.dark.blue.s69279189. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.lixhult.storage.combination.dark.green.orange.s29248656. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.lixhult.storage.combination.grey.dark.green.orange.s89248922. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.lixhult.storage.combination.grey.dark.green.red.orange.s09248916. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.lixhult.storage.combination.grey.white.orange.red.s89161631. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.lixhult.storage.combination.red.orange.grey.pink.white.blue.green.s49248858. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.lixhult.storage.combination.white.pink.s69248659. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.lycksele.loevas.2.seat.sofa.bed.vallarum.cerise.s99280884. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.lycksele.storage.box.2.seat.sofa.bed.black.60116960. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.mackapaer.bench.with.storage.compartments.white.10334753. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.malm.bed.frame.high.w.2.storage.boxes.white.s79012991. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.malm.chest.of.2.drawers.white.80214549. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.malm.chest.of.6.drawers.white.60403602. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.malm.chest.of.6.drawers.white.mirror.glass.70403593. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.malm.desk.white.60214159. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.malm.dressing.table.white.10203610. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.malsjoe.sideboard.basic.unit.black.stained.00327772. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.malsjoe.tv.bench.with.sliding.doors.black.stained.60327774. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.mammut.childrens.chair.in.outdoor.blue.60365346. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.mammut.childrens.chair.in.outdoor.pink.80382321. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.mastholmen.armchair.outdoor.50339206. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.micke.desk.white.30213076. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.micke.desk.white.80213074. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.micke.desk.white.90214308. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.mostorp.wall.shelf.beige.high.gloss.beige.60295706. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.muren.recliner.nordvalla.beige.90299029. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.nannarp.leg.black.10293597. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.nikkeby.chest.of.2.drawers.grey.green.30439457. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.nisse.folding.chair.black.30115066. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.nisse.folding.chair.dark.blue.lilac.90412426. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.nolmyra.easy.chair.birch.veneer.grey.10233532. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.nominell.pair.of.armrests.black.90200269. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.nordkisa.dressing.table.bamboo.20439472. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.nordkisa.open.wardrobe.with.sliding.door.bamboo.00439468. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.nordli.bed.frame.w.storage.and.headboard.white.s09241420. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.nordli.chest.of.10.drawers.white.s29248010. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.nordli.chest.of.12.drawers.white.s99239489. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.nordli.chest.of.2.drawers.white.s99239494. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.nordli.chest.of.3.drawers.white.s39239835. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.nordli.chest.of.5.drawers.white.s29276550. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.nordli.chest.of.6.drawers.white.anthracite.s19211757. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.nordli.chest.of.6.drawers.white.anthracite.s59211760. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.nordli.chest.of.6.drawers.white.s49276629. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.nordli.chest.of.6.drawers.white.s69276633. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.nordli.chest.of.7.drawers.white.anthracite.s99211758. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.nordli.chest.of.7.drawers.white.s99239502. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.nordli.chest.of.8.drawers.white.s19276621. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.nordli.chest.of.8.drawers.white.s59239504. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.nordli.chest.of.drawers.white.s19276522. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.nordli.modular.chest.of.2.drawers.white.10383461. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.nordli.modular.chest.of.3.drawers.white.20383465. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.nordmela.chest.of.4.drawers.black.blue.10421665. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.nordmela.chest.of.drawers.with.clothes.rail.black.blue.00421656. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.nordviken.bar.stool.with.backrest.black.80369112. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.norraker.bar.stool.with.backrest.birch.20429010. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.norraker.stool.birch.00428974. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.norraryd.bar.stool.with.backrest.black.00397736. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.norrnaes.chair.white.isunda.grey.50185303. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.norsborg.3.seat.section.edum.bright.green.metal.s99241840. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.norsborg.3.seat.sofa.edum.beige.birch.beige.s49240193. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.norsborg.armrest.edum.bright.green.s89241614. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.norsborg.corner.sofa.4.seat.edum.bright.green.metal.bright.green.s19240062. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.norsborg.corner.sofa.5.seat.with.chaise.longue.edum.birch.edum.bright.green.birch.s39239816. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.nyhamn.sofa.bed.with.triple.cushion.with.foam.mattress.skiftebo.yellow.s09306416. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.nyhamn.sofa.bed.with.triple.cushion.with.pocket.spring.mattress.knisa.grey.beige.s09306355. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.odger.chair.brown.50364149. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.oensklig.stor.baskets.changing.tbl.set.of.4.white.30199283. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.olaus.2.shelf.sections.s09279050. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.olaus.2.shelf.sections.s59279043. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.olaus.shelving.unit.galvanised.60364295. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.pahl.add.on.unit.white.green.30306495. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.pahl.desk.top.shelf.white.green.60306494. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.pax.auli.wardrobe.combination.white.mirror.glass.s59330112. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.pax.bergsbo.wardrobe.combination.white.frosted.glass.s99329140. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.pax.mehamn.wardrobe.combination.white.white.stained.oak.effect.s29330571. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.pax.mehamn.wardrobe.combination.white.white.stained.oak.effect.s89385612. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.pax.sekken.wardrobe.combination.white.frosted.glass.s79330192. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.pax.tyssedal.wardrobe.combination.white.white.glass.s49324946. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.pax.tyssedal.wardrobe.combination.white.white.s09325047. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.pax.vikedal.wardrobe.combination.brown.stained.ash.effect.mirror.glass.s89329536. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.pax.vingrom.wardrobe.combination.white.resjoen.white.s29320911. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.pax.wardrobe.black.brown.forsand.black.brown.stained.ash.effect.s29286078. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.pax.wardrobe.black.brown.forsand.black.brown.stained.ash.effect.s29286894. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.pax.wardrobe.black.brown.forsand.black.brown.stained.ash.effect.s69286910. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.pax.wardrobe.black.brown.forsand.brown.stained.ash.effect.s79287612. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.pax.wardrobe.black.brown.forsand.vikedal.s79285991. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.pax.wardrobe.black.brown.hasvik.high.gloss.white.s99180573. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.pax.wardrobe.black.brown.stained.ash.effect.repvag.black.brown.stained.oak.veneer.s59300092. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.pax.wardrobe.black.brown.uggdal.grey.glass.s49306315. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.pax.wardrobe.black.brown.undredal.black.s59094412. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.pax.wardrobe.black.brown.undredal.undredal.glass.s59221660. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.pax.wardrobe.brown.stained.ash.effect.uggdal.grey.glass.s09247257. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.pax.wardrobe.brown.stained.ash.effect.uggdal.grey.glass.s39305873. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.pax.wardrobe.combination.brown.stained.ash.effect.s19331439. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.pax.wardrobe.combination.white.s09324689. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.pax.wardrobe.white.auli.mirror.glass.s19127382. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.pax.wardrobe.white.bergsbo.frosted.glass.s79128821. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.pax.wardrobe.white.bergsbo.white.s39127710. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.pax.wardrobe.white.faervik.white.glass.s19305812. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.pax.wardrobe.white.faervik.white.glass.s29167037. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.pax.wardrobe.white.fardal.vikedal.s99127608. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.pax.wardrobe.white.fjellhamar.dark.bamboo.s19306307. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.pax.wardrobe.white.fjellhamar.dark.bamboo.s89243929. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.pax.wardrobe.white.fjellhamar.light.bamboo.s89243335. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.pax.wardrobe.white.flornes.dark.grey.s99276491. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.pax.wardrobe.white.forsand.vikedal.s09303719. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.pax.wardrobe.white.forsand.white.s39246911. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.pax.wardrobe.white.grimo.vikedal.s29300121. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.pax.wardrobe.white.hamnas.black.blue.s79276425. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.pax.wardrobe.white.hasvik.white.s09303309. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.pax.wardrobe.white.hokksund.high.gloss.light.beige.s59264843. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.pax.wardrobe.white.hokksund.high.gloss.light.beige.s79305913. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.pax.wardrobe.white.hokksund.hokksund.high.gloss.light.beige.s39221128. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.pax.wardrobe.white.hokksund.light.grey.s19305671. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.pax.wardrobe.white.mehamn.auli.s39305745. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.pax.wardrobe.white.nykirke.frosted.glass.check.pattern.s59305725. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.pax.wardrobe.white.s19300107. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.pax.wardrobe.white.s29128357. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.pax.wardrobe.white.s29128442. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.pax.wardrobe.white.s69128567. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.pax.wardrobe.white.s89227873. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.pax.wardrobe.white.sekken.frosted.glass.s79305852. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.pax.wardrobe.white.soerumsand.white.s39276917. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.pax.wardrobe.white.tyssedal.tyssedal.glass.s29221652. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.pax.wardrobe.white.tyssedal.white.s99264964. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.pax.wardrobe.white.uggdal.grey.glass.s39305707. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.pello.armchair.holmby.natural.50078464. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.platsa.bed.frame.with.2.door.3.drawers.white.fonnes.s99302975. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.platsa.chest.of.2.drawers.white.skatval.dark.grey.s29277229. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.platsa.chest.of.3.drawers.white.fonnes.white.s49277247. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.platsa.media.storage.combination.s29291391. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.platsa.media.storage.combination.s69291394. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.platsa.storage.combination.s79291355. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.platsa.tv.bench.white.metal.s39305260. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.platsa.wall.storage.white.fonnes.white.s29320652. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.platsa.wardrobe.w.10.doors.fonnes.white.s29304586. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.platsa.wardrobe.w.6.doors.fonnes.white.s19304582. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.platsa.wardrobe.white.fonnes.sannidal.s29248369. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.platsa.wardrobe.white.fonnes.sannidal.s89252117. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.platsa.wardrobe.white.fonnes.white.s59248626. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.platsa.wardrobe.with.2.doors.3.drawers.white.fonnes.white.s59326469. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.platsa.wardrobe.with.2.doors.3.drawers.white.fonnes.white.s59336270. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.platsa.wardrobe.with.6.drawers.white.fonnes.white.s29324320. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.platsa.wardrobe.with.7.doors.3.drawers.white.sannidal.ridabu.s69304909. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.platsa.wardrobe.with.9.doors.white.sannidal.white.s19302998. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.poaeng.armchair.birch.veneer.robust.glose.eggshell.s19830588. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.poaeng.armchair.black.brown.robust.glose.dark.brown.s59829125. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.poaeng.childrens.armchair.birch.veneer.almas.natural.90116553. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.poaeng.childrens.armchair.frame.birch.veneer.80418056. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.poaeng.footstool.birch.veneer.knisa.orange.red.orange.s79244665. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.poaeng.rocking.chair.birch.veneer.robust.glose.dark.brown.s49861007. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.poaeng.rocking.chair.black.brown.knisa.black.s19241537. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.praestholm.bench.with.backrest.outdoor.grey.70418170. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.raskog.bar.stool.black.30352246. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.raskog.stool.beige.80308393. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.rast.chest.of.3.drawers.pine.75305709. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.regissoer.cabinet.brown.60342072. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.remsta.armchair.djuparp.dark.green.blue.green.blue.60344759. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.saltholmen.chair.outdoor.foldable.beige.80311828. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.sandbacken.3.seat.sofa.frillestad.light.grey.s69217790. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.setskog.bedside.table.white.40320349. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.sjaelland.chair.with.armrests.outdoor.light.grey.light.brown.70386503. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.sjaelland.reclining.chair.outdoor.light.grey.foldable.dark.grey.50405338. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.sjaelland.reclining.chair.outdoor.light.grey.foldable.light.brown.30405339. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.skadis.connector.for.algot.white.00335885. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.skadis.pegboard.combination.white.s19216694. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.skubb.storage.case.white.90294989. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.slaekt.bed.frame.w.storage.slatted.bedbase.white.s29291956. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.slaekt.bed.frame.with.3.storage.boxes.white.s89386070. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.slaekt.storage.box.with.castors.80362974. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.slaekt.underbed.with.storage.white.s99239451. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.smagoera.changing.table.bookshelf.white.50460886. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.smagoera.changing.tbl.bookshelf.w.1.shlf.ut.white.s99323614. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.smagoera.changing.tbl.bookshelf.w.2.shlf.ut.white.s09323623. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.smagoera.shelf.unit.white.30465489. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.smagoera.wardrobe.white.10460888. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.soederhamn.3.seat.section.finnsta.turquoise.s89135939. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.soederhamn.4.seat.sofa.with.chaise.longue.and.open.end.finnsta.turquoise.s49282989. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.soederhamn.4.seat.sofa.with.chaise.longue.finnsta.turquoise.s59284351. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.soederhamn.armchair.finnsta.turquoise.s59135648. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.soederhamn.chaise.longue.finnsta.turquoise.s79135746. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.soederhamn.corner.sofa.4.seat.with.open.end.finnsta.turquoise.s29284381. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.solleroen.3.seat.modular.sofa.outdoor.dark.grey.kuddarna.beige.s79303645. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.solleroen.3.seat.modular.sofa.outdoor.with.footstool.brown.brown.froesoen.duvholmen.dark.grey.s39252704. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.solleroen.armrest.section.outdoor.brown.10386450. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.solleroen.corner.section.outdoor.dark.grey.20424593. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.solleroen.modular.corner.sofa.4.seat.outdoor.with.footstool.brown.brown.kungsoe.white.s19241472. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.solleroen.modular.corner.sofa.4.seat.outdoor.with.footstool.dark.grey.kuddarna.beige.s49303595. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.songesand.chest.of.3.drawers.white.90366839. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.stallarp.leg.chrome.plated.20390574. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.stig.bar.stool.with.backrest.black.silver.colour.80155205. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.stockholm.three.seat.sofa.seglora.natural.80245051. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.stocksund.3.seat.sofa.ljungen.blue.black.wood.s69129798. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.stocksund.bench.ljungen.medium.grey.light.brown.wood.s79315945. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.stoljan.conference.chair.white.black.s89907452. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.strandmon.childrens.armchair.vissle.grey.70392542. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.strandmon.footstool.djuparp.dark.green.50360009. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.stubbarp.leg.black.brown.60293566. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.stubbarp.leg.grey.stained.walnut.effect.40293567. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.stuk.storage.case.white.grey.40309573. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.stuva.changing.table.desk.white.20225334. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.stuva.fritids.bookcase.with.drawers.white.white.s89252688. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.stuva.fritids.changing.table.with.drawers.white.white.s69253146. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.stuva.fritids.chest.of.3.drawers.white.white.s09252673. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.stuva.fritids.wardrobe.white.white.s19252856. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.stuva.fritids.wardrobe.white.white.s39252756. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.sundvik.wardrobe.grey.brown.90269697. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.svalnaes.cabinet.with.2.doors.bamboo.white.00322897. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.svalnaes.wall.mounted.shelf.combination.bamboo.s69184431. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.svalnaes.wall.mounted.storage.combination.bamboo.white.s59184441. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.svanoe.arbor.bench.grey.30411415. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.syvde.cabinet.with.glass.doors.white.30439565. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.taernoe.chair.outdoor.acacia.foldable.black.grey.brown.stained.steel.light.brown.stained.90095428. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.teodores.chair.white.90350937. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.tobias.chair.blue.chrome.plated.60334722. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.tossberg.chair.metal.black.grey.90435324. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.tosteroe.storage.box.outdoor.black.10411440. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.tranaroe.stool.side.table.in.outdoor.red.10411421. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.trofast.frame.light.white.stained.pine.pine.10308693. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.trofast.frame.light.white.stained.pine.pine.20308697. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.trofast.frame.light.white.stained.pine.pine.60308695. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.trofast.frame.white.30091452. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.trofast.frame.white.30171123. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.trofast.storage.box.green.40466285. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.trofast.storage.box.pink.50466275. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.trofast.storage.combination.light.white.stained.pine.pine.white.s09102532. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.trofast.storage.combination.light.white.stained.pine.pine.white.s19102659. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.trofast.storage.combination.light.white.stained.pine.pine.white.s79102958. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.trofast.storage.combination.light.white.stained.pine.pine.white.s89102095. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.trofast.storage.combination.white.green.s89228472. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.trofast.storage.combination.white.green.white.s99228551. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.trofast.storage.combination.white.pink.s89335976. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.trofast.storage.combination.white.pink.s99228570. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.trofast.storage.combination.white.s29042877. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.trofast.storage.combination.white.white.pink.s69337801. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.trofast.storage.combination.white.white.s49123405. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.trofast.storage.combination.white.white.s99228476. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.trofast.wall.storage.light.white.stained.pine.pine.20308701. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.trofast.wall.storage.white.50171122. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.trogen.childrens.step.stool.yellow.80371520. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.tullsta.armchair.lofallet.beige.s29272712. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.tyssedal.chest.of.4.drawers.white.10391324. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.tyssedal.chest.of.6.drawers.white.20293714. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.urban.junior.chair.white.00165213. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.vadholma.kitchen.island.black.oak.20359154. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.vallentuna.2.seat.modular.sofa.with.sofa.bed.and.storage.hillared.light.blue.s59277652. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.vallentuna.3.seat.modular.sofa.with.open.end.and.storage.orrsta.olive.green.s39277894. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.vallentuna.back.rest.hillared.light.blue.s79279396. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.vallentuna.modular.corner.sofa.3.seat.sofa.bed.and.storage.hillared.light.blue.s49277978. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.vallentuna.seat.module.with.backrest.hillared.dark.grey.s09276971. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.vallentuna.sofa.bed.module.with.backrests.hillared.light.blue.s89277486. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.vattviken.armchair.bed.lerhaga.light.grey.50468953. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.veberoed.bench.natural.50343331. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.vedbo.chair.with.armrests.black.gunnared.dark.grey.80403154. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.vedbo.high.back.armchair.gunnared.light.brown.pink.10423589. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.vikhammer.bedside.table.black.90388978. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.vilto.shelving.unit.birch.90344456. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.vilto.step.stool.birch.60344453. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.vilto.storage.stool.birch.40344449. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.vimle.2.seat.section.orrsta.black.blue.s69219505. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.vimle.2.seat.sofa.orrsta.black.blue.s89284712. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.vimle.3.seat.sofa.bed.dalstorp.multicolour.s39298778. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.vimle.3.seat.sofa.bed.with.open.end.tallmyra.black.grey.s39292465. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.vimle.3.seat.sofa.dalstorp.multicolour.s69298772. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.vimle.3.seat.sofa.with.chaise.longue.with.headrest.gunnared.medium.grey.s99295593. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.vimle.3.seat.sofa.with.headrest.gunnared.medium.grey.s79295551. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.vimle.armrest.orrsta.black.blue.s59285360. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.vimle.corner.sofa.bed.5.seat.with.chaise.longue.dalstorp.multicolour.s19299726. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.vittsjoe.laptop.table.black.brown.glass.80221352. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.vittsjoe.shelving.unit.black.brown.glass.20213312. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.vittsjoe.shelving.unit.black.brown.glass.50214678. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.vittsjoe.storage.combination.black.brown.glass.s59902658. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.vittsjoe.tv.bench.black.brown.glass.70303428. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.volfgang.chair.chrome.plated.gunnared.medium.grey.80404672. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.vuku.wardrobe.white.80331973. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.yngvar.chair.anthracite.80417636. <dbl> …
## $ link_https...www.ikea.com.sa.en.p.yngvar.chair.red.00417635. <dbl> …
## $ other_colors_Yes <dbl> …
## $ designer_other <dbl> …
xgboost_spec <-
boost_tree(trees = tune())%>%
set_mode("classification") %>%
set_engine("xgboost")
xgboost_workflow <-
workflow() %>%
add_recipe(xgboost_recipe) %>%
add_model(xgboost_spec)
doParallel::registerDoParallel()
set.seed(31899)
xgboost_tune <-
tune_grid(xgboost_workflow,
resamples = ikea_cv,
grid = 5,
control = control_grid(save_pred = TRUE))
## → A | warning: ! There are new levels in `old_price`: "SR 925", "SR 2,605", "SR 7,785", "SR
## 310", "SR 6,785", "SR 575", "SR 6,875", "SR 5,640", "SR 730", and "SR 232".
## ℹ Consider using step_novel() (`?recipes::step_novel()`) before `step_dummy()`
## to handle unseen values.
## → B | warning: ! There are new levels in `link`:
## "https://www.ikea.com/sa/en/p/nordli-chest-of-5-drawers-white-s29276550/",
## "https://www.ikea.com/sa/en/p/brusali-tv-bench-brown-10306613/",
## "https://www.ikea.com/sa/en/p/besta-storage-combination-w-glass-doors-grey-stained-walnut-effect-lappviken-grey-stained-walnut-eff-clear-glass-s29300852/",
## "https://www.ikea.com/sa/en/p/dietmar-underframe-for-chair-with-armrests-chrome-plated-70288630/",
## "https://www.ikea.com/sa/en/p/vimle-2-seat-sofa-orrsta-black-blue-s89284712/",
## "https://www.ikea.com/sa/en/p/vittsjoe-shelving-unit-black-brown-glass-50214678/",
## "https://www.ikea.com/sa/en/p/billy-morliden-bookcase-with-glass-doors-brown-ash-veneer-glass-s39292026/",
## "https://www.ikea.com/sa/en/p/besta-tv-bench-white-40299890/",
## "https://www.ikea.com/sa/en/p/bror-shelving-unit-white-s89303956/",
## "https://www.ikea.com/sa/en/p/fanbyn-chair-frame-brown-wood-effect-00385069/",
## "https://www.ikea.com/sa/en/p/soederhamn-corner-sofa-4-seat-with-open-end-finnsta-turquoise-s29284381/",
## "https://www.ikea.com/sa/en/p/platsa-wardrobe-with-2-doors-3-drawers-white-fonnes-white-s59326469/",
## "https://www.ikea.com/sa/en/p/janinge-chair-with-armrests-white-80280515/",
## "https://www.ikea.com/sa/en/p/besta-tv-storage-combination-glass-doors-black-brown-lappviken-light-grey-clear-glass-s49203355/",
## "https://www.ikea.com/sa/en/p/gamlarp-2-seat-sofa-dark-grey-70451065/",
## "https://www.ikea.com/sa/en/p/pax-wardrobe-white-fjellhamar-light-bamboo-s89243335/",
## "https://www.ikea.com/sa/en/p/lixhult-storage-combination-white-pink-s69248659/",
## "https://www.ikea.com/sa/en/p/stig-bar-stool-with-backrest-black-silver-colour-80155205/",
## …,
## "https://www.ikea.com/sa/en/p/klimpen-table-leg-with-storage-grey-light-grey-10353765/",
## and
## "https://www.ikea.com/sa/en/p/algot-wall-upright-shelves-white-s39903791/".
## ℹ Consider using step_novel() (`?recipes::step_novel()`) before `step_dummy()`
## to handle unseen values.
## There were issues with some computations A: x1 B: x1There were issues with some computations A: x3 B: x3There were issues with some computations A: x6 B: x6There were issues with some computations A: x10 B: x10There were issues with some computations A: x15 B: x15 → C | warning: No event observations were detected in `truth` with event level 'FALSE'.
## There were issues with some computations A: x15 B: x15There were issues with some computations A: x20 B: x20 C: x5 → D | warning: ! There are new levels in `old_price`: "SR 671", "SR 145", "SR 3,490", "SR
## 5,975", "SR 1,785", "SR 965", "SR 90", "SR 420", "SR 3,375", and "SR 2,760".
## ℹ Consider using step_novel() (`?recipes::step_novel()`) before `step_dummy()`
## to handle unseen values.
## There were issues with some computations A: x20 B: x20 C: x5 → E | warning: ! There are new levels in `link`:
## "https://www.ikea.com/sa/en/p/solleroen-modular-corner-sofa-4-seat-outdoor-with-footstool-dark-grey-kuddarna-beige-s49303595/",
## "https://www.ikea.com/sa/en/p/lixhult-storage-combination-grey-dark-green-red-orange-s09248916/",
## "https://www.ikea.com/sa/en/p/alex-drawer-unit-blue-40410340/",
## "https://www.ikea.com/sa/en/p/vuku-wardrobe-white-80331973/",
## "https://www.ikea.com/sa/en/p/eket-wall-mounted-cabinet-combination-dark-grey-s79189150/",
## "https://www.ikea.com/sa/en/p/pax-wardrobe-white-faervik-white-glass-s29167037/",
## "https://www.ikea.com/sa/en/p/billy-oxberg-bookcase-with-glass-doors-white-s69281804/",
## "https://www.ikea.com/sa/en/p/landskrona-3-seat-sofa-grann-bomstad-golden-brown-metal-s09270295/",
## "https://www.ikea.com/sa/en/p/jonaxel-frame-w-bskts-clths-rl-shlv-uts-s89297663/",
## "https://www.ikea.com/sa/en/p/micke-desk-white-80213074/",
## "https://www.ikea.com/sa/en/p/liatorp-tv-storage-combination-white-s29046045/",
## "https://www.ikea.com/sa/en/p/hattefjaell-pair-of-armrests-black-00429426/",
## "https://www.ikea.com/sa/en/p/billy-gnedby-bookcase-black-brown-s99020476/",
## "https://www.ikea.com/sa/en/p/ekeroe-armchair-kimstad-laglig-black-60262881/",
## "https://www.ikea.com/sa/en/p/besta-storage-combination-w-glass-doors-black-brown-selsviken-dark-red-brown-clear-glass-s49300827/",
## "https://www.ikea.com/sa/en/p/lixhult-storage-combination-grey-dark-green-orange-s89248922/",
## "https://www.ikea.com/sa/en/p/ivar-2-sections-shelves-pine-s79248319/",
## "https://www.ikea.com/sa/en/p/besta-storage-combination-with-doors-white-kallviken-stubbarp-concrete-effect-s09305068/",
## …, "https://www.ikea.com/sa/en/p/muren-recliner-nordvalla-beige-90299029/",
## and
## "https://www.ikea.com/sa/en/p/bekant-storage-unit-on-castors-mesh-white-s09282547/".
## ℹ Consider using step_novel() (`?recipes::step_novel()`) before `step_dummy()`
## to handle unseen values.
## There were issues with some computations A: x20 B: x20 C: x5There were issues with some computations A: x20 B: x20 C: x5 D: x1 E:…There were issues with some computations A: x20 B: x20 C: x5 D: x3 E:…There were issues with some computations A: x20 B: x20 C: x5 D: x6 E:…There were issues with some computations A: x20 B: x20 C: x5 D: x10 E…There were issues with some computations A: x20 B: x20 C: x5 D: x15 E…There were issues with some computations A: x20 B: x20 C: x10 D: x20 … → F | error: Error in `step_smote()`:
## Caused by error in `bake()`:
## ! Not enough observations of "FALSE" to perform SMOTE.
## There were issues with some computations A: x20 B: x20 C: x10 D: x20 …There were issues with some computations A: x20 B: x20 C: x10 D: x20 … → G | warning: ! There are new levels in `category`: "Trolleys".
## ℹ Consider using step_novel() (`?recipes::step_novel()`) before `step_dummy()`
## to handle unseen values.
## There were issues with some computations A: x20 B: x20 C: x10 D: x20 … → H | warning: ! There are new levels in `old_price`: "SR 179", "SR 557", "SR 475", "SR 30",
## "SR 105", "SR 977", "SR 1,735", "SR 752", and "SR 657".
## ℹ Consider using step_novel() (`?recipes::step_novel()`) before `step_dummy()`
## to handle unseen values.
## There were issues with some computations A: x20 B: x20 C: x10 D: x20 … → I | warning: ! There are new levels in `link`:
## "https://www.ikea.com/sa/en/p/helmer-drawer-unit-on-castors-black-20341970/",
## "https://www.ikea.com/sa/en/p/besta-storage-combination-w-doors-drawers-grey-stained-walnut-effect-lappviken-stubbarp-grey-stained-walnut-eff-clear-glass-s39301785/",
## "https://www.ikea.com/sa/en/p/lixhult-storage-combination-grey-white-orange-red-s89161631/",
## "https://www.ikea.com/sa/en/p/groenlid-3-seat-sofa-with-chaise-longue-kimstad-dark-brown-s49256594/",
## "https://www.ikea.com/sa/en/p/ivar-1-section-shelves-pine-s59248320/",
## "https://www.ikea.com/sa/en/p/kivik-u-shaped-sofa-6-seat-orrsta-red-s49252949/",
## "https://www.ikea.com/sa/en/p/nordli-chest-of-2-drawers-white-s99239494/",
## "https://www.ikea.com/sa/en/p/micke-desk-white-30213076/",
## "https://www.ikea.com/sa/en/p/pax-wardrobe-white-hokksund-high-gloss-light-beige-s59264843/",
## "https://www.ikea.com/sa/en/p/delaktig-chaise-longue-with-armrest-gunnared-light-brown-pink-s09289327/",
## "https://www.ikea.com/sa/en/p/pax-wardrobe-brown-stained-ash-effect-uggdal-grey-glass-s09247257/",
## "https://www.ikea.com/sa/en/p/ivar-shelving-unit-with-clothes-rail-s19288006/",
## "https://www.ikea.com/sa/en/p/brimnes-tv-storage-combination-glass-doors-white-s99278225/",
## "https://www.ikea.com/sa/en/p/bernhard-bar-stool-with-backrest-chrome-plated-mjuk-kavat-white-00272656/",
## "https://www.ikea.com/sa/en/p/songesand-chest-of-3-drawers-white-90366839/",
## "https://www.ikea.com/sa/en/p/algot-wall-upright-shelves-white-s49017749/",
## "https://www.ikea.com/sa/en/p/bror-hook-for-post-black-50343147/",
## "https://www.ikea.com/sa/en/p/havsten-supporting-stand-outdoor-beige-10404519/",
## …, "https://www.ikea.com/sa/en/p/stallarp-leg-chrome-plated-20390574/", and
## "https://www.ikea.com/sa/en/p/norraker-bar-stool-with-backrest-birch-20429010/".
## ℹ Consider using step_novel() (`?recipes::step_novel()`) before `step_dummy()`
## to handle unseen values.
## There were issues with some computations A: x20 B: x20 C: x10 D: x20 …There were issues with some computations A: x20 B: x20 C: x10 D: x20 …There were issues with some computations A: x20 B: x20 C: x10 D: x20 …There were issues with some computations A: x20 B: x20 C: x10 D: x20 …There were issues with some computations A: x20 B: x20 C: x10 D: x20 …There were issues with some computations A: x20 B: x20 C: x10 D: x20 … → J | warning: ! There are new levels in `old_price`: "SR 2,350", "SR 3,500", "SR 2,495", "SR
## 6,625", "SR 1,300", "SR 2,525", "SR 981", "SR 910", "SR 2,220", "SR 1,865",
## and "SR 776".
## ℹ Consider using step_novel() (`?recipes::step_novel()`) before `step_dummy()`
## to handle unseen values.
## There were issues with some computations A: x20 B: x20 C: x10 D: x20 … → K | warning: ! There are new levels in `link`:
## "https://www.ikea.com/sa/en/p/bekant-storage-unit-with-smart-lock-mesh-black-s79286896/",
## "https://www.ikea.com/sa/en/p/graelviken-3-seat-sofa-bed-grey-70340567/",
## "https://www.ikea.com/sa/en/p/langur-seat-shell-for-highchair-white-10330811/",
## "https://www.ikea.com/sa/en/p/besta-storage-combination-with-doors-black-brown-riksviken-stubbarp-light-bronze-effect-s29302573/",
## "https://www.ikea.com/sa/en/p/groenlid-armchair-inseros-white-s19275909/",
## "https://www.ikea.com/sa/en/p/billy-oxberg-bookcase-black-brown-glass-s89217727/",
## "https://www.ikea.com/sa/en/p/nordkisa-open-wardrobe-with-sliding-door-bamboo-00439468/",
## "https://www.ikea.com/sa/en/p/havsta-glass-door-cabinet-grey-00415194/",
## "https://www.ikea.com/sa/en/p/trogen-childrens-step-stool-yellow-80371520/",
## "https://www.ikea.com/sa/en/p/haellan-storage-combination-with-doors-white-s89249403/",
## "https://www.ikea.com/sa/en/p/brimnes-headboard-with-storage-compartment-white-20228709/",
## "https://www.ikea.com/sa/en/p/slaekt-underbed-with-storage-white-s99239451/",
## "https://www.ikea.com/sa/en/p/groenlid-2-seat-sofa-bed-ljungen-dark-red-s29278101/",
## "https://www.ikea.com/sa/en/p/liatorp-bookcase-white-00116595/",
## "https://www.ikea.com/sa/en/p/nordli-chest-of-12-drawers-white-s99239489/",
## "https://www.ikea.com/sa/en/p/vilto-shelving-unit-birch-90344456/",
## "https://www.ikea.com/sa/en/p/hemnes-chest-of-3-drawers-white-90374274/",
## "https://www.ikea.com/sa/en/p/kolbjoern-shelving-unit-with-2-cabinets-beige-s59291634/",
## …,
## "https://www.ikea.com/sa/en/p/algot-skadis-wall-upright-shelves-rod-s19276414/",
## and
## "https://www.ikea.com/sa/en/p/trofast-storage-combination-light-white-stained-pine-pine-white-s89102095/".
## ℹ Consider using step_novel() (`?recipes::step_novel()`) before `step_dummy()`
## to handle unseen values.
## There were issues with some computations A: x20 B: x20 C: x10 D: x20 …There were issues with some computations A: x20 B: x20 C: x15 D: x20 …There were issues with some computations A: x20 B: x20 C: x15 D: x20 …There were issues with some computations A: x20 B: x20 C: x15 D: x20 …There were issues with some computations A: x20 B: x20 C: x15 D: x20 …There were issues with some computations A: x20 B: x20 C: x15 D: x20 …There were issues with some computations A: x20 B: x20 C: x20 D: x20 …There were issues with some computations A: x20 B: x20 C: x20 D: x20 …There were issues with some computations A: x20 B: x20 C: x20 D: x20 … → L | warning: ! There are new levels in `old_price`: "SR 2,155", "SR 2,095", "SR 895", "SR
## 505", "SR 4,235", "SR 27", "SR 3,425", "SR 8,350", "SR 2,090", "SR 765", and
## "SR 2,270".
## ℹ Consider using step_novel() (`?recipes::step_novel()`) before `step_dummy()`
## to handle unseen values.
## There were issues with some computations A: x20 B: x20 C: x20 D: x20 … → M | warning: ! There are new levels in `link`:
## "https://www.ikea.com/sa/en/p/billy-morliden-bookcase-with-glass-doors-white-glass-s29287370/",
## "https://www.ikea.com/sa/en/p/svalnaes-wall-mounted-shelf-combination-bamboo-s69184431/",
## "https://www.ikea.com/sa/en/p/liatorp-storage-combination-with-doors-white-s19046442/",
## "https://www.ikea.com/sa/en/p/platsa-media-storage-combination-s29291391/",
## "https://www.ikea.com/sa/en/p/eket-cabinet-combination-with-feet-dark-grey-s69190861/",
## "https://www.ikea.com/sa/en/p/tyssedal-chest-of-6-drawers-white-20293714/",
## "https://www.ikea.com/sa/en/p/pax-wardrobe-white-forsand-white-s39246911/",
## "https://www.ikea.com/sa/en/p/groenlid-corner-sofa-5-seat-with-chaise-longue-kimstad-dark-brown-s59256579/",
## "https://www.ikea.com/sa/en/p/flottebo-sofa-bed-with-side-table-vissle-purple-s29297454/",
## "https://www.ikea.com/sa/en/p/smagoera-changing-table-bookshelf-white-50460886/",
## "https://www.ikea.com/sa/en/p/nordmela-chest-of-drawers-with-clothes-rail-black-blue-00421656/",
## "https://www.ikea.com/sa/en/p/besta-tv-bench-with-drawers-grey-stained-walnut-effect-lappviken-stallarp-grey-stained-walnut-eff-clear-glass-s59276266/",
## "https://www.ikea.com/sa/en/p/bekvaem-step-stool-white-40178888/",
## "https://www.ikea.com/sa/en/p/vittsjoe-storage-combination-black-brown-glass-s59902658/",
## "https://www.ikea.com/sa/en/p/kolbjoern-cabinet-in-outdoor-beige-20345633/",
## "https://www.ikea.com/sa/en/p/eket-underframe-birch-80349001/",
## "https://www.ikea.com/sa/en/p/ingolf-junior-chair-antique-stain-60353838/",
## "https://www.ikea.com/sa/en/p/haellan-storage-combination-with-doors-white-s49249396/",
## …, "https://www.ikea.com/sa/en/p/billy-bookcase-white-s89017827/", and
## "https://www.ikea.com/sa/en/p/besta-eket-cabinet-combination-for-tv-white-s29204431/".
## ℹ Consider using step_novel() (`?recipes::step_novel()`) before `step_dummy()`
## to handle unseen values.
## There were issues with some computations A: x20 B: x20 C: x20 D: x20 …There were issues with some computations A: x20 B: x20 C: x20 D: x20 …There were issues with some computations A: x20 B: x20 C: x20 D: x20 …There were issues with some computations A: x20 B: x20 C: x20 D: x20 …There were issues with some computations A: x20 B: x20 C: x20 D: x20 …There were issues with some computations A: x20 B: x20 C: x20 D: x20 …There were issues with some computations A: x20 B: x20 C: x25 D: x20 … → N | warning: ! There are new levels in `old_price`: "SR 3,250", "SR 530", "SR 340", "SR
## 655", "SR 570", and "SR 1,180".
## ℹ Consider using step_novel() (`?recipes::step_novel()`) before `step_dummy()`
## to handle unseen values.
## There were issues with some computations A: x20 B: x20 C: x25 D: x20 … → O | warning: ! There are new levels in `link`:
## "https://www.ikea.com/sa/en/p/poaeng-armchair-black-brown-robust-glose-dark-brown-s59829125/",
## "https://www.ikea.com/sa/en/p/pax-wardrobe-white-hokksund-high-gloss-light-beige-s79305913/",
## "https://www.ikea.com/sa/en/p/besta-wall-mounted-cabinet-combination-black-brown-riksviken-light-bronze-effect-s69301717/",
## "https://www.ikea.com/sa/en/p/lixhult-cabinet-combination-grey-s19279177/",
## "https://www.ikea.com/sa/en/p/ekedalen-chair-brown-orrsta-light-grey-80341019/",
## "https://www.ikea.com/sa/en/p/bekant-shelving-unit-black-10373495/",
## "https://www.ikea.com/sa/en/p/lixhult-storage-combination-red-orange-grey-pink-white-blue-green-s49248858/",
## "https://www.ikea.com/sa/en/p/vedbo-chair-with-armrests-black-gunnared-dark-grey-80403154/",
## "https://www.ikea.com/sa/en/p/godvin-leg-white-50200271/",
## "https://www.ikea.com/sa/en/p/billy-oxberg-bookcase-white-glass-s89017832/",
## "https://www.ikea.com/sa/en/p/galant-storage-combination-with-drawers-black-stained-ash-veneer-s09285070/",
## "https://www.ikea.com/sa/en/p/kivik-chaise-longue-grann-bomstad-black-10198604/",
## "https://www.ikea.com/sa/en/p/besta-tv-bench-white-70299879/",
## "https://www.ikea.com/sa/en/p/kallax-shelving-unit-white-green-10459903/",
## "https://www.ikea.com/sa/en/p/groenlid-corner-sofa-4-seat-kimstad-dark-brown-s79256564/",
## "https://www.ikea.com/sa/en/p/besta-storage-combination-with-doors-black-brown-lappviken-light-grey-clear-glass-s69208031/",
## "https://www.ikea.com/sa/en/p/eket-cabinet-w-door-and-1-shelf-white-90333938/",
## "https://www.ikea.com/sa/en/p/kolbjoern-shelving-unit-with-cabinet-beige-s19291645/",
## …,
## "https://www.ikea.com/sa/en/p/antilop-highchair-with-safety-belt-white-silver-colour-s89041709/",
## and
## "https://www.ikea.com/sa/en/p/eket-wall-mounted-cabinet-combination-white-s89307643/".
## ℹ Consider using step_novel() (`?recipes::step_novel()`) before `step_dummy()`
## to handle unseen values.
## There were issues with some computations A: x20 B: x20 C: x25 D: x20 …There were issues with some computations A: x20 B: x20 C: x25 D: x20 …There were issues with some computations A: x20 B: x20 C: x25 D: x20 …There were issues with some computations A: x20 B: x20 C: x25 D: x20 …There were issues with some computations A: x20 B: x20 C: x25 D: x20 …There were issues with some computations A: x20 B: x20 C: x25 D: x20 …There were issues with some computations A: x20 B: x20 C: x30 D: x20 …There were issues with some computations A: x20 B: x20 C: x30 D: x20 …There were issues with some computations A: x20 B: x20 C: x30 D: x20 …