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)
## ══ Using correlationfunnel? ════════════════════════════════════════════════════
## You might also be interested in applied data science training for business.
## </> Learn more at - www.business-science.io </>
library(recipes)
##
## Attaching package: 'recipes'
##
## The following object is masked from 'package:stringr':
##
## fixed
##
## The following object is masked from 'package:stats':
##
## step
library(tidymodels)
## ── Attaching packages ────────────────────────────────────── tidymodels 1.4.1 ──
## ✔ broom 1.0.12 ✔ tailor 0.1.0
## ✔ dials 1.4.2 ✔ tune 2.0.1
## ✔ infer 1.1.0 ✔ workflows 1.3.0
## ✔ modeldata 1.5.1 ✔ workflowsets 1.1.1
## ✔ parsnip 1.4.1 ✔ yardstick 1.3.2
## ✔ rsample 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(themis)
library(doParallel)
## Loading required package: foreach
##
## Attaching package: 'foreach'
##
## The following objects are masked from 'package:purrr':
##
## accumulate, when
##
## Loading required package: iterators
## Loading required package: parallel
library(forcats)
data <- 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`
Issues with data
Missing values
depth, height, width
Factors or numeric variables
category, sellable_online, other_colors, designer
Zero variance variables
none identified
Character variables
name, short_description, link
Unbalanced target variable
price distribution may be skewed across categories
ID variable
item_id
data_clean <- data %>%
mutate(
category = as.factor(category),
sellable_online = factor(sellable_online, levels = c(FALSE, TRUE), labels = c("No", "Yes")),
other_colors = as.factor(other_colors),
designer = as.factor(designer)
) %>%
select(-`...1`, -item_id, -link, -short_description, -old_price, -name)
data_clean %>% count(category)
## # A tibble: 17 × 2
## category n
## <fct> <int>
## 1 Bar furniture 47
## 2 Beds 208
## 3 Bookcases & shelving units 548
## 4 Cabinets & cupboards 292
## 5 Café furniture 26
## 6 Chairs 481
## 7 Chests of drawers & drawer units 125
## 8 Children's furniture 124
## 9 Nursery furniture 97
## 10 Outdoor furniture 216
## 11 Room dividers 13
## 12 Sideboards, buffets & console tables 23
## 13 Sofas & armchairs 428
## 14 Tables & desks 612
## 15 Trolleys 28
## 16 TV & media furniture 190
## 17 Wardrobes 236
data_clean %>%
ggplot(aes(category)) +
geom_bar() +
coord_flip()
data_clean %>%
ggplot(aes(category, price)) +
geom_boxplot() +
coord_flip()
# step 1: binarizes
data_model <- data_clean %>%
drop_na(depth, height, width)
# step 2: correlation
data_binarized <- data_model %>%
binarize()
data_binarized %>% glimpse()
## Rows: 1,899
## Columns: 58
## $ category__Bar_furniture <dbl> 1, 1, 1, 1, 1, 1, 1, …
## $ category__Beds <dbl> 0, 0, 0, 0, 0, 0, 0, …
## $ `category__Bookcases_&_shelving_units` <dbl> 0, 0, 0, 0, 0, 0, 0, …
## $ `category__Cabinets_&_cupboards` <dbl> 0, 0, 0, 0, 0, 0, 0, …
## $ category__Chairs <dbl> 0, 0, 0, 0, 0, 0, 0, …
## $ `category__Chests_of_drawers_&_drawer_units` <dbl> 0, 0, 0, 0, 0, 0, 0, …
## $ `category__Children's_furniture` <dbl> 0, 0, 0, 0, 0, 0, 0, …
## $ category__Nursery_furniture <dbl> 0, 0, 0, 0, 0, 0, 0, …
## $ category__Outdoor_furniture <dbl> 0, 0, 0, 0, 0, 0, 0, …
## $ `category__Sideboards,_buffets_&_console_tables` <dbl> 0, 0, 0, 0, 0, 0, 0, …
## $ `category__Sofas_&_armchairs` <dbl> 0, 0, 0, 0, 0, 0, 0, …
## $ `category__Tables_&_desks` <dbl> 0, 0, 0, 0, 0, 0, 0, …
## $ `category__TV_&_media_furniture` <dbl> 0, 0, 0, 0, 0, 0, 0, …
## $ category__Wardrobes <dbl> 0, 0, 0, 0, 0, 0, 0, …
## $ `category__-OTHER` <dbl> 0, 0, 0, 0, 0, 0, 0, …
## $ `price__-Inf_295` <dbl> 1, 1, 0, 1, 1, 1, 0, …
## $ price__295_680 <dbl> 0, 0, 1, 0, 0, 0, 1, …
## $ price__680_1589 <dbl> 0, 0, 0, 0, 0, 0, 0, …
## $ price__1589_Inf <dbl> 0, 0, 0, 0, 0, 0, 0, …
## $ sellable_online__Yes <dbl> 1, 1, 1, 1, 1, 1, 1, …
## $ `sellable_online__-OTHER` <dbl> 0, 0, 0, 0, 0, 0, 0, …
## $ other_colors__No <dbl> 0, 1, 1, 1, 1, 1, 1, …
## $ other_colors__Yes <dbl> 1, 0, 0, 0, 0, 0, 0, …
## $ designer__Andreas_Fredriksson <dbl> 0, 0, 0, 0, 0, 0, 0, …
## $ designer__Carina_Bengs <dbl> 0, 0, 1, 0, 0, 0, 1, …
## $ designer__Carl_Öjerstam <dbl> 0, 0, 0, 0, 0, 0, 0, …
## $ designer__Ebba_Strandmark <dbl> 0, 0, 0, 0, 0, 0, 0, …
## $ designer__Ehlén_Johansson <dbl> 0, 0, 0, 0, 0, 0, 0, …
## $ `designer__Ehlén_Johansson/IKEA_of_Sweden` <dbl> 0, 0, 0, 0, 0, 0, 0, …
## $ designer__Eva_Lilja_Löwenhielm <dbl> 0, 0, 0, 0, 0, 0, 0, …
## $ designer__Francis_Cayouette <dbl> 0, 0, 0, 0, 0, 0, 0, …
## $ designer__Gillis_Lundgren <dbl> 0, 0, 0, 0, 0, 0, 0, …
## $ designer__Henrik_Preutz <dbl> 1, 0, 0, 0, 0, 0, 0, …
## $ designer__IKEA_of_Sweden <dbl> 0, 0, 0, 0, 0, 0, 0, …
## $ `designer__IKEA_of_Sweden/Ehlén_Johansson` <dbl> 0, 0, 0, 0, 0, 0, 0, …
## $ `designer__IKEA_of_Sweden/Jon_Karlsson` <dbl> 0, 0, 0, 0, 0, 0, 0, …
## $ designer__Johan_Kroon <dbl> 0, 0, 0, 0, 0, 0, 0, …
## $ designer__Jon_Karlsson <dbl> 0, 0, 0, 0, 0, 0, 0, …
## $ `designer__Jon_Karlsson/IKEA_of_Sweden` <dbl> 0, 0, 0, 0, 0, 0, 0, …
## $ `designer__K_Hagberg/M_Hagberg` <dbl> 0, 0, 0, 1, 1, 1, 0, …
## $ designer__Mia_Lagerman <dbl> 0, 0, 0, 0, 0, 0, 0, …
## $ designer__Nike_Karlsson <dbl> 0, 0, 0, 0, 0, 0, 0, …
## $ designer__Ola_Wihlborg <dbl> 0, 0, 0, 0, 0, 0, 0, …
## $ designer__Studio_Copenhagen <dbl> 0, 0, 0, 0, 0, 0, 0, …
## $ designer__Tord_Björklund <dbl> 0, 0, 0, 0, 0, 0, 0, …
## $ `designer__-OTHER` <dbl> 0, 1, 0, 0, 0, 0, 0, …
## $ `depth__-Inf_40` <dbl> 0, 0, 0, 0, 0, 0, 0, …
## $ depth__40_47 <dbl> 0, 0, 1, 1, 1, 1, 1, …
## $ depth__47_60 <dbl> 1, 1, 0, 0, 0, 0, 0, …
## $ depth__60_Inf <dbl> 0, 0, 0, 0, 0, 0, 0, …
## $ `height__-Inf_71` <dbl> 0, 1, 0, 0, 0, 0, 0, …
## $ height__71_92 <dbl> 0, 0, 1, 0, 0, 0, 0, …
## $ height__92_171 <dbl> 1, 0, 0, 1, 1, 1, 1, …
## $ height__171_Inf <dbl> 0, 0, 0, 0, 0, 0, 0, …
## $ `width__-Inf_60` <dbl> 1, 0, 1, 1, 1, 1, 1, …
## $ width__60_93 <dbl> 0, 1, 0, 0, 0, 0, 0, …
## $ width__93_161.5 <dbl> 0, 0, 0, 0, 0, 0, 0, …
## $ width__161.5_Inf <dbl> 0, 0, 0, 0, 0, 0, 0, …
# step 3: correlation
data_correlation <- data_binarized %>%
correlate(sellable_online__Yes)
# step 4: plot
data_correlation %>%
correlationfunnel::plot_correlation_funnel()
## Warning: The `size` argument of `element_line()` is deprecated as of ggplot2 3.4.0.
## ℹ Please use the `linewidth` argument instead.
## ℹ The deprecated feature was likely used in the correlationfunnel package.
## Please report the issue at
## <https://github.com/business-science/correlationfunnel/issues>.
## This warning is displayed once per session.
## Call `lifecycle::last_lifecycle_warnings()` to see where this warning was
## generated.
## Warning: The `size` argument of `element_rect()` is deprecated as of ggplot2 3.4.0.
## ℹ Please use the `linewidth` argument instead.
## ℹ The deprecated feature was likely used in the correlationfunnel package.
## Please report the issue at
## <https://github.com/business-science/correlationfunnel/issues>.
## This warning is displayed once per session.
## Call `lifecycle::last_lifecycle_warnings()` to see where this warning was
## generated.
## Warning: ggrepel: 38 unlabeled data points (too many overlaps). Consider
## increasing max.overlaps
data_clean <- data %>%
mutate(
category = as.factor(category),
sellable_online = as.factor(sellable_online),
sellable_online = fct_relevel(sellable_online, "TRUE", "FALSE"),
other_colors = as.factor(other_colors),
designer = as.factor(designer)
) %>%
select(-`...1`, -item_id, -link)
#split Data
set.seed(1234)
data_split <- initial_split(data_clean, strata = sellable_online)
data_train <- training(data_split)
data_test <- testing(data_split)
data_cv <- vfold_cv(data_train, v = 5, strata = sellable_online)
xgboost_recipe <- recipe(sellable_online ~ ., data = data_train) %>%
step_impute_median(all_numeric_predictors()) %>%
step_novel(all_nominal_predictors()) %>%
step_unknown(all_nominal_predictors()) %>%
step_dummy(all_nominal_predictors()) %>%
step_zv(all_predictors()) %>%
step_smote(all_outcomes())
xgboost_recipe %>% prep() %>% juice() %>% glimpse()
## Rows: 5,494
## Columns: 2,612
## $ price <dbl> …
## $ depth <dbl> …
## $ height <dbl> …
## $ width <dbl> …
## $ name_ADILS <dbl> …
## $ name_AGAM <dbl> …
## $ name_AGEN <dbl> …
## $ name_ALEFJÄLL <dbl> …
## $ name_ALEX <dbl> …
## $ name_ALGOT <dbl> …
## $ name_ALGOT...BROR <dbl> …
## $ name_ALGOT...SKÅDIS <dbl> …
## $ name_ALVARET <dbl> …
## $ name_ÅMLIDEN <dbl> …
## $ name_ÅMLIDEN...ALVARET <dbl> …
## $ name_ÅMLIDEN...KRILLE <dbl> …
## $ name_ÅMLIDEN...OLOV <dbl> …
## $ name_ÅMLIDEN...TORSKLINT <dbl> …
## $ name_ANGERSBY <dbl> …
## $ name_ANTILOP <dbl> …
## $ name_ANVÄNDBAR <dbl> …
## $ name_ÄPPLARÖ <dbl> …
## $ name_ARKELSTORP <dbl> …
## $ name_ASKEBY <dbl> …
## $ name_ASKHOLMEN <dbl> …
## $ name_ASKVOLL <dbl> …
## $ name_BACKARYD <dbl> …
## $ name_BAGGANÄS <dbl> …
## $ name_BALTSAR <dbl> …
## $ name_BÅTSFJORD <dbl> …
## $ name_BEKANT <dbl> …
## $ name_BEKVÄM <dbl> …
## $ name_BENARP <dbl> …
## $ name_BERGENES <dbl> …
## $ name_BERGHALLA <dbl> …
## $ name_BERNHARD <dbl> …
## $ name_BESTÅ <dbl> …
## $ name_BESTÅ...EKET <dbl> …
## $ name_BESTÅ.BURS <dbl> …
## $ name_BILLSBRO <dbl> …
## $ name_BILLY <dbl> …
## $ name_BILLY...BOTTNA <dbl> …
## $ name_BILLY...GNEDBY <dbl> …
## $ name_BILLY...MORLIDEN <dbl> …
## $ name_BILLY...OXBERG <dbl> …
## $ name_BINGSTA <dbl> …
## $ name_BJÄRRED <dbl> …
## $ name_BJÖRKSNÄS <dbl> …
## $ name_BJORLI <dbl> …
## $ name_BJURSTA <dbl> …
## $ name_BLÅMES <dbl> …
## $ name_BLECKBERGET <dbl> …
## $ name_BOLMEN <dbl> …
## $ name_BÖRJE <dbl> …
## $ name_BOSNÄS <dbl> …
## $ name_BOTTNA <dbl> …
## $ name_BRÄDA <dbl> …
## $ name_BRÅTHULT <dbl> …
## $ name_BRATTVÅG <dbl> …
## $ name_BRENNÅSEN <dbl> …
## $ name_BRIMNES <dbl> …
## $ name_BROMMÖ <dbl> …
## $ name_BROR <dbl> …
## $ name_BRORINGE <dbl> …
## $ name_BRUSALI <dbl> …
## $ name_BRUSEN <dbl> …
## $ name_BRYGGJA <dbl> …
## $ name_BRYNILEN <dbl> …
## $ name_BUNSÖ <dbl> …
## $ name_BURFJORD <dbl> …
## $ name_BURVIK <dbl> …
## $ name_BUSA <dbl> …
## $ name_BUSKBO <dbl> …
## $ name_BUSSAN <dbl> …
## $ name_BUSUNGE <dbl> …
## $ name_BYÅS <dbl> …
## $ name_BYLLAN <dbl> …
## $ name_CILLA <dbl> …
## $ name_CIRKUSTÄLT <dbl> …
## $ name_DAGOTTO <dbl> …
## $ name_DALSHULT <dbl> …
## $ name_DELAKTIG <dbl> …
## $ name_DETOLF <dbl> …
## $ name_DIETMAR <dbl> …
## $ name_DIHULT <dbl> …
## $ name_DUVHOLMEN <dbl> …
## $ name_EDVALLA <dbl> …
## $ name_EKEDALEN <dbl> …
## $ name_EKEDALEN...BERNHARD <dbl> …
## $ name_EKEDALEN...EKEDALEN <dbl> …
## $ name_EKEDALEN...HENRIKSDAL <dbl> …
## $ name_EKEDALEN...LEIFARNE <dbl> …
## $ name_EKEDALEN...ODGER <dbl> …
## $ name_EKEDALEN...TOBIAS <dbl> …
## $ name_EKENÄS <dbl> …
## $ name_EKET <dbl> …
## $ name_EKOLSUND <dbl> …
## $ name_EKTORP <dbl> …
## $ name_ELVARLI <dbl> …
## $ name_EMTEN <dbl> …
## $ name_ENERYDA <dbl> …
## $ name_ENETRI <dbl> …
## $ name_ERIK <dbl> …
## $ name_ERNFRID <dbl> …
## $ name_FABRIKÖR <dbl> …
## $ name_FALHOLMEN <dbl> …
## $ name_FANBYN <dbl> …
## $ name_FÄRLÖV <dbl> …
## $ name_FEJAN <dbl> …
## $ name_FINNVARD <dbl> …
## $ name_FIXA <dbl> …
## $ name_FJÄLLBERGET <dbl> …
## $ name_FJÄLLBO <dbl> …
## $ name_FLEKKE <dbl> …
## $ name_FLINTAN <dbl> …
## $ name_FLINTAN...NOMINELL <dbl> …
## $ name_FLISAT <dbl> …
## $ name_FLOTTEBO <dbl> …
## $ name_FÖRHÖJA <dbl> …
## $ name_FRANKLIN <dbl> …
## $ name_FREDDE <dbl> …
## $ name_FREKVENS <dbl> …
## $ name_FRIHETEN <dbl> …
## $ name_FRÖSÖN <dbl> …
## $ name_FRÖSÖN.DUVHOLMEN <dbl> …
## $ name_FUSION <dbl> …
## $ name_FYRESDAL <dbl> …
## $ name_GALANT <dbl> …
## $ name_GAMLARED <dbl> …
## $ name_GAMLARED...LERHAMN <dbl> …
## $ name_GAMLARED...STEFAN <dbl> …
## $ name_GAMLARP <dbl> …
## $ name_GAMLEBY <dbl> …
## $ name_GAMLEHULT <dbl> …
## $ name_GÅRÖ <dbl> …
## $ name_GÅRÖ...FREDÖN <dbl> …
## $ name_GENEVAD <dbl> …
## $ name_GERSBY <dbl> …
## $ name_GERTON <dbl> …
## $ name_GISTAD <dbl> …
## $ name_GJÖRA <dbl> …
## $ name_GLADOM <dbl> …
## $ name_GLASHOLM <dbl> …
## $ name_GLASHOLM...ALEX <dbl> …
## $ name_GLASSVIK <dbl> …
## $ name_GLENN <dbl> …
## $ name_GNEDBY <dbl> …
## $ name_GODISHUS <dbl> …
## $ name_GONATT <dbl> …
## $ name_GRÄLVIKEN <dbl> …
## $ name_GRANBODA <dbl> …
## $ name_GRÖNADAL <dbl> …
## $ name_GRÖNLID <dbl> …
## $ name_GRUNDSUND <dbl> …
## $ name_GRUNDTAL <dbl> …
## $ name_GRUVBYN <dbl> …
## $ name_GRYTTBY <dbl> …
## $ name_GUBBARP <dbl> …
## $ name_GULLIVER <dbl> …
## $ name_GUNDE <dbl> …
## $ name_HACKÅS <dbl> …
## $ name_HÄLLAN <dbl> …
## $ name_HÅLLÖ <dbl> …
## $ name_HAMMARN <dbl> …
## $ name_HANVIKEN <dbl> …
## $ name_HARRY <dbl> …
## $ name_HÄSSELBY <dbl> …
## $ name_HATTEFJÄLL <dbl> …
## $ name_HAVSTA <dbl> …
## $ name_HAVSTEN <dbl> …
## $ name_HEDRA <dbl> …
## $ name_HEJNE <dbl> …
## $ name_HELMER <dbl> …
## $ name_HEMNES <dbl> …
## $ name_HENRIKSDAL <dbl> …
## $ name_HERDIS <dbl> …
## $ name_HILLARED <dbl> …
## $ name_HILVER...GERTON <dbl> …
## $ name_HILVER...GODVIN <dbl> …
## $ name_HILVER...LERBERG <dbl> …
## $ name_HISHULT <dbl> …
## $ name_HOL <dbl> …
## $ name_HOLMSUND <dbl> …
## $ name_HORNAVAN <dbl> …
## $ name_HUSARÖ <dbl> …
## $ name_HYLLIS <dbl> …
## $ name_IDÅSEN <dbl> …
## $ name_IKEA.PS <dbl> …
## $ name_IKEA.PS.2012 <dbl> …
## $ name_IKEA.PS.2012...JANINGE <dbl> …
## $ name_IKEA.PS.2012...TEODORES <dbl> …
## $ name_IKEA.PS.2017 <dbl> …
## $ name_IKEA.PS.GULLHOLMEN <dbl> …
## $ name_IKEA.PS.LÖMSK <dbl> …
## $ name_IKEA.PS.VÅGÖ <dbl> …
## $ name_INGATORP <dbl> …
## $ name_INGATORP...HENRIKSDAL <dbl> …
## $ name_INGATORP...INGATORP <dbl> …
## $ name_INGATORP...INGOLF <dbl> …
## $ name_INGATORP...SAKARIAS <dbl> …
## $ name_INGO <dbl> …
## $ name_INGOLF <dbl> …
## $ name_ISBERGET <dbl> …
## $ name_IVAR <dbl> …
## $ name_JANINGE <dbl> …
## $ name_JÄRVFJÄLLET <dbl> …
## $ name_JOKKMOKK <dbl> …
## $ name_JONAXEL <dbl> …
## $ name_JULES <dbl> …
## $ name_JUSTINA <dbl> …
## $ name_KALLAX <dbl> …
## $ name_KALLRÖR <dbl> …
## $ name_KALLVIKEN <dbl> …
## $ name_KARLHUGO <dbl> …
## $ name_KARLJAN <dbl> …
## $ name_KIVIK <dbl> …
## $ name_KLEPPSTAD <dbl> …
## $ name_KLIMPEN <dbl> …
## $ name_KLIMPEN...LALLE <dbl> …
## $ name_KLIMPEN...TORSKLINT <dbl> …
## $ name_KLIPPAN <dbl> …
## $ name_KNARREVIK <dbl> …
## $ name_KNOPPARP <dbl> …
## $ name_KNOTTEN <dbl> …
## $ name_KOARP <dbl> …
## $ name_KOLBJÖRN <dbl> …
## $ name_KONGSFJORD <dbl> …
## $ name_KOPPANG <dbl> …
## $ name_KORNSJÖ <dbl> …
## $ name_KRAGSTA <dbl> …
## $ name_KRILLE <dbl> …
## $ name_KRITTER <dbl> …
## $ name_KROKHOLMEN <dbl> …
## $ name_KUDDARNA <dbl> …
## $ name_KULLABERG <dbl> …
## $ name_KULLEN <dbl> …
## $ name_KUNGSHAMN <dbl> …
## $ name_KUNGSHOLMEN <dbl> …
## $ name_KUNGSÖ <dbl> …
## $ name_KURA <dbl> …
## $ name_KVISTBRO <dbl> …
## $ name_KYRRE <dbl> …
## $ name_LACK <dbl> …
## $ name_LÄCKÖ <dbl> …
## $ name_LANDSKRONA <dbl> …
## $ name_LANEBERG <dbl> …
## $ name_LANEBERG...EKEDALEN <dbl> …
## $ name_LANEBERG...KARLJAN <dbl> …
## $ name_LANEBERG...SVENBERTIL <dbl> …
## $ name_LÅNGFJÄLL <dbl> …
## $ name_LANGUR <dbl> …
## $ name_LAPPLAND <dbl> …
## $ name_LAPPVIKEN <dbl> …
## $ name_LÄTT <dbl> …
## $ name_LAUVIK <dbl> …
## $ name_LAXVIKEN <dbl> …
## $ name_LEIFARNE <dbl> …
## $ name_LEN <dbl> …
## $ name_LENNART <dbl> …
## $ name_LERHAMN <dbl> …
## $ name_LIATORP <dbl> …
## $ name_LIDHULT <dbl> …
## $ name_LIDKULLEN <dbl> …
## $ name_LIERSKOGEN <dbl> …
## $ name_LILLÅSEN <dbl> …
## $ name_LILLHÖJDEN <dbl> …
## $ name_LINDVED <dbl> …
## $ name_LINNMON <dbl> …
## $ name_LINNMON...ADILS <dbl> …
## $ name_LINNMON...ALEX <dbl> …
## $ name_LINNMON...ALVARET <dbl> …
## $ name_LINNMON...FINNVARD <dbl> …
## $ name_LINNMON...GODVIN <dbl> …
## $ name_LINNMON...KRILLE <dbl> …
## $ name_LINNMON...LALLE <dbl> …
## $ name_LINNMON...LERBERG <dbl> …
## $ name_LINNMON...ODDVALD <dbl> …
## $ name_LINNMON...OLOV <dbl> …
## $ name_LINNMON...TORSKLINT <dbl> …
## $ name_LISABO <dbl> …
## $ name_LISABO...JANINGE <dbl> …
## $ name_LISABO...LEIFARNE <dbl> …
## $ name_LISABO...ODGER <dbl> …
## $ name_LISABO...RÖNNINGE <dbl> …
## $ name_LISABO...SVENBERTIL <dbl> …
## $ name_LISTERBY <dbl> …
## $ name_LIXHULT <dbl> …
## $ name_LJUV <dbl> …
## $ name_LOBERGET...BLYSKÄR <dbl> …
## $ name_LOBERGET...SIBBEN <dbl> …
## $ name_LOMMARP <dbl> …
## $ name_LOTE <dbl> …
## $ name_LÖVA <dbl> …
## $ name_LÖVBACKEN <dbl> …
## $ name_LUBBAN <dbl> …
## $ name_LYCKSELE <dbl> …
## $ name_LYCKSELE.HÅVET <dbl> …
## $ name_LYCKSELE.LÖVÅS <dbl> …
## $ name_LYCKSELE.MURBO <dbl> …
## $ name_MACKAPÄR <dbl> …
## $ name_MALINDA <dbl> …
## $ name_MALM <dbl> …
## $ name_MALMSTA <dbl> …
## $ name_MALSJÖ <dbl> …
## $ name_MAMMUT <dbl> …
## $ name_MARIUS <dbl> …
## $ name_MARKERAD <dbl> …
## $ name_MARKUS <dbl> …
## $ name_MARTIN <dbl> …
## $ name_MARYD <dbl> …
## $ name_MÄSTERBY <dbl> …
## $ name_MASTHOLMEN <dbl> …
## $ name_MELLTORP <dbl> …
## $ name_MELLTORP...ADDE <dbl> …
## $ name_MELLTORP...JANINGE <dbl> …
## $ name_MELLTORP...MARIUS <dbl> …
## $ name_MELLTORP...NILSOVE <dbl> …
## $ name_MELLTORP...NISSE <dbl> …
## $ name_MELLTORP...TEODORES <dbl> …
## $ name_MICKE <dbl> …
## $ name_MILLBERGET <dbl> …
## $ name_MILSBO <dbl> …
## $ name_MINNEN <dbl> …
## $ name_MÖCKELBY...FANBYN <dbl> …
## $ name_MÖCKELBY...HENRIKSDAL <dbl> …
## $ name_MÖCKELBY...NORRARYD <dbl> …
## $ name_MÖCKELBY...ODGER <dbl> …
## $ name_MÖJLIGHET <dbl> …
## $ name_MÖLLARP <dbl> …
## $ name_MÖRBYLÅNGA <dbl> …
## $ name_MÖRBYLÅNGA...BALTSAR <dbl> …
## $ name_MÖRBYLÅNGA...BERNHARD <dbl> …
## $ name_MÖRBYLÅNGA...LEIFARNE <dbl> …
## $ name_MÖRBYLÅNGA...ODGER <dbl> …
## $ name_MÖRBYLÅNGA...TOSSBERG <dbl> …
## $ name_MÖRBYLÅNGA...VOLFGANG <dbl> …
## $ name_MORLIDEN <dbl> …
## $ name_MOSJÖ <dbl> …
## $ name_MOSSARYD <dbl> …
## $ name_MOSTORP <dbl> …
## $ name_MUREN <dbl> …
## $ name_MYDAL <dbl> …
## $ name_NANNARP <dbl> …
## $ name_NEIDEN <dbl> …
## $ name_NILSERIK <dbl> …
## $ name_NILSOVE...NORNA <dbl> …
## $ name_NISSE <dbl> …
## $ name_NOCKEBY <dbl> …
## $ name_NOLMYRA <dbl> …
## $ name_NOMINELL <dbl> …
## $ name_NORBERG <dbl> …
## $ name_NORBERG...NISSE <dbl> …
## $ name_NORDEN <dbl> …
## $ name_NORDKISA <dbl> …
## $ name_NORDLI <dbl> …
## $ name_NORDMELA <dbl> …
## $ name_NORDVIKEN <dbl> …
## $ name_NORDVIKEN...HENRIKSDAL <dbl> …
## $ name_NORDVIKEN...LEIFARNE <dbl> …
## $ name_NORDVIKEN...NORDVIKEN <dbl> …
## $ name_NORDVIKEN...NORRARYD <dbl> …
## $ name_NORDVIKEN...RÖNNINGE <dbl> …
## $ name_NORNA <dbl> …
## $ name_NORRÅKER <dbl> …
## $ name_NORRÅKER...NORRÅKER <dbl> …
## $ name_NORRÅKER...NORRARYD <dbl> …
## $ name_NORRÅKER...RÖNNINGE <dbl> …
## $ name_NORRARYD <dbl> …
## $ name_NORSBORG <dbl> …
## $ name_NOTVIKEN <dbl> …
## $ name_NYBODA <dbl> …
## $ name_NYHAMN <dbl> …
## $ name_OBSERVATÖR <dbl> …
## $ name_ODDBJÖRG <dbl> …
## $ name_ODDVALD <dbl> …
## $ name_ODGER <dbl> …
## $ name_OLAUS <dbl> …
## $ name_OLOV <dbl> …
## $ name_ÖNSKLIG <dbl> …
## $ name_ÖRFJÄLL <dbl> …
## $ name_ORRNÄS <dbl> …
## $ name_ÖSTERNÄS <dbl> …
## $ name_ÖVRARYD <dbl> …
## $ name_ÖVRARYD...JANINGE <dbl> …
## $ name_OXBERG <dbl> …
## $ name_PÅHL <dbl> …
## $ name_PAX <dbl> …
## $ name_PAX...BERGSBO <dbl> …
## $ name_PAX...FORSAND.VIKEDAL <dbl> …
## $ name_PAX...GRIMO <dbl> …
## $ name_PAX...HASVIK <dbl> …
## $ name_PAX...HOKKSUND <dbl> …
## $ name_PAX...MEHAMN <dbl> …
## $ name_PAX...MEHAMN.AULI <dbl> …
## $ name_PAX...MEHAMN.SEKKEN <dbl> …
## $ name_PAX...SEKKEN <dbl> …
## $ name_PAX...TYSSEDAL <dbl> …
## $ name_PAX...VINGROM <dbl> …
## $ name_PAX...VINTERBRO <dbl> …
## $ name_PELLO <dbl> …
## $ name_PLATSA <dbl> …
## $ name_POÄNG <dbl> …
## $ name_PRÄSTHOLM <dbl> …
## $ name_RÅDVIKEN <dbl> …
## $ name_RAKKESTAD <dbl> …
## $ name_RÅSHULT <dbl> …
## $ name_RÅSKOG <dbl> …
## $ name_RAST <dbl> …
## $ name_REGISSÖR <dbl> …
## $ name_REMSTA <dbl> …
## $ name_RENBERGET <dbl> …
## $ name_RESÖ <dbl> …
## $ name_RIDABU <dbl> …
## $ name_RIKSVIKEN <dbl> …
## $ name_RIMFORSA <dbl> …
## $ name_RÖNNINGE <dbl> …
## $ name_ROTHULT <dbl> …
## $ name_RYDEBÄCK.BACKARYD...JANINGE <dbl> …
## $ name_SÄBÖVIK <dbl> …
## $ name_SAGSTUA <dbl> …
## $ name_SAKARIAS <dbl> …
## $ name_SALTHOLMEN <dbl> …
## $ name_SANDARED <dbl> …
## $ name_SANDBACKEN <dbl> …
## $ name_SANDVIKA <dbl> …
## $ name_SELSVIKEN <dbl> …
## $ name_SETSKOG <dbl> …
## $ name_SINDVIK <dbl> …
## $ name_SJÄLLAND <dbl> …
## $ name_SKÅDIS <dbl> …
## $ name_SKÅLBERG...SPORREN <dbl> …
## $ name_SKÄRHAMN <dbl> …
## $ name_SKARSTA <dbl> …
## $ name_SKOGSTA...NORRARYD <dbl> …
## $ name_SKOGSTORP <dbl> …
## $ name_SKÖTSAM <dbl> …
## $ name_SKUBB <dbl> …
## $ name_SLÄHULT <dbl> …
## $ name_SLÄKT <dbl> …
## $ name_SLATTUM <dbl> …
## $ name_SMÅGÖRA <dbl> …
## $ name_SNIGLAR <dbl> …
## $ name_SNILLE <dbl> …
## $ name_SÖDERHAMN <dbl> …
## $ name_SOLGUL <dbl> …
## $ name_SOLLERÖN <dbl> …
## $ name_SONGESAND <dbl> …
## $ name_STACKHOLMEN <dbl> …
## $ name_STALLARP <dbl> …
## $ name_STEGÖN <dbl> …
## $ name_STENSELE <dbl> …
## $ name_STENSELE...NORRARYD <dbl> …
## $ name_STENSELE...RÖNNINGE <dbl> …
## $ name_STIG <dbl> …
## $ name_STOCKHOLM <dbl> …
## $ name_STOCKHOLM.2017 <dbl> …
## $ name_STOCKSUND <dbl> …
## $ name_STOCKVIKEN <dbl> …
## $ name_STOLJAN <dbl> …
## $ name_STRÅFLY <dbl> …
## $ name_STRANDMON <dbl> …
## $ name_STUBBARP <dbl> …
## $ name_STUK <dbl> …
## $ name_STUVA <dbl> …
## $ name_STUVA...FÖLJA <dbl> …
## $ name_STUVA...FRITIDS <dbl> …
## $ name_SUFFLETT <dbl> …
## $ name_SULARP <dbl> …
## $ name_SULTAN <dbl> …
## $ name_SUMMERA <dbl> …
## $ name_SUNDLANDET <dbl> …
## $ name_SUNDSTA <dbl> …
## $ name_SUNDVIK <dbl> …
## $ name_SUNNEA <dbl> …
## $ name_SVALNÄS <dbl> …
## $ name_SVALSTA <dbl> …
## $ name_SVANÖ <dbl> …
## $ name_SVÄRTA <dbl> …
## $ name_SVENBERTIL <dbl> …
## $ name_SYVDE <dbl> …
## $ name_TÄRENDÖ...ADDE <dbl> …
## $ name_TÄRENDÖ...GUNDE <dbl> …
## $ name_TÄRNÖ <dbl> …
## $ name_TERJE <dbl> …
## $ name_THYGE <dbl> …
## $ name_TIMMERVIKEN <dbl> …
## $ name_TINGBY <dbl> …
## $ name_TINGBY...LEIFARNE <dbl> …
## $ name_TINGBY...NILSOVE <dbl> …
## $ name_TOBIAS <dbl> …
## $ name_TOFTERYD <dbl> …
## $ name_TOMMARYD <dbl> …
## $ name_TORHOLMEN <dbl> …
## $ name_TORNVIKEN <dbl> …
## $ name_TORSBY <dbl> …
## $ name_TORSBY...BERNHARD <dbl> …
## $ name_TORSBY...LEIFARNE <dbl> …
## $ name_TORSBY...VOLFGANG <dbl> …
## $ name_TOSSBERG <dbl> …
## $ name_TOSTERÖ <dbl> …
## $ name_TRANARÖ <dbl> …
## $ name_TROFAST <dbl> …
## $ name_TROGEN <dbl> …
## $ name_TRULSTORP <dbl> …
## $ name_TRYSIL <dbl> …
## $ name_TUFFING <dbl> …
## $ name_TULLSTA <dbl> …
## $ name_TYSSEDAL <dbl> …
## $ name_ULRIKSBERG <dbl> …
## $ name_UPPLEVA <dbl> …
## $ name_URBAN <dbl> …
## $ name_UTÅKER <dbl> …
## $ name_UTTER <dbl> …
## $ name_VÄDDÖ <dbl> …
## $ name_VADHOLMA <dbl> …
## $ name_VÄDRA <dbl> …
## $ name_VALLENTUNA <dbl> …
## $ name_VANGSTA <dbl> …
## $ name_VANGSTA...TEODORES <dbl> …
## $ name_VASSVIKEN <dbl> …
## $ name_VÄSTANÅ <dbl> …
## $ name_VÄSTANBY <dbl> …
## $ name_VÄSTANBY.VÄSTANÅ...BERNHARD <dbl> …
## $ name_VÄSTANBY.VÄSTANÅ...LEIFARNE <dbl> …
## $ name_VATTVIKEN <dbl> …
## $ name_VEBERÖD <dbl> …
## $ name_VEDBO <dbl> …
## $ name_VEDBO...VEDBO <dbl> …
## $ name_VEJMON <dbl> …
## $ name_VIDGA <dbl> …
## $ name_VIGGJA <dbl> …
## $ name_VIKARE <dbl> …
## $ name_VIKHAMMER <dbl> …
## $ name_VILTO <dbl> …
## $ name_VIMLE <dbl> …
## $ name_VIMUND <dbl> …
## $ name_VIPPÄRT <dbl> …
## $ name_VISTHUS <dbl> …
## $ name_VITTSJÖ <dbl> …
## $ name_VITVAL <dbl> …
## $ name_VOLFGANG <dbl> …
## $ name_VUKU <dbl> …
## $ name_YNGVAR <dbl> …
## $ name_YPPERLIG <dbl> …
## $ name_YPPERLIG...NILSOVE <dbl> …
## $ name_YTTERÖN <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> …
## $ old_price_SR.1.010 <dbl> …
## $ old_price_SR.1.023 <dbl> …
## $ old_price_SR.1.030 <dbl> …
## $ old_price_SR.1.045 <dbl> …
## $ old_price_SR.1.050 <dbl> …
## $ old_price_SR.1.099 <dbl> …
## $ old_price_SR.1.125 <dbl> …
## $ old_price_SR.1.145 <dbl> …
## $ old_price_SR.1.150 <dbl> …
## $ old_price_SR.1.180 <dbl> …
## $ old_price_SR.1.182 <dbl> …
## $ old_price_SR.1.190 <dbl> …
## $ old_price_SR.1.200 <dbl> …
## $ old_price_SR.1.210 <dbl> …
## $ old_price_SR.1.225 <dbl> …
## $ old_price_SR.1.230 <dbl> …
## $ old_price_SR.1.243 <dbl> …
## $ old_price_SR.1.250 <dbl> …
## $ old_price_SR.1.275 <dbl> …
## $ old_price_SR.1.295 <dbl> …
## $ old_price_SR.1.300 <dbl> …
## $ old_price_SR.1.307 <dbl> …
## $ old_price_SR.1.315 <dbl> …
## $ old_price_SR.1.325 <dbl> …
## $ old_price_SR.1.345 <dbl> …
## $ old_price_SR.1.350 <dbl> …
## $ old_price_SR.1.355 <dbl> …
## $ old_price_SR.1.365 <dbl> …
## $ old_price_SR.1.378 <dbl> …
## $ old_price_SR.1.385 <dbl> …
## $ old_price_SR.1.390 <dbl> …
## $ old_price_SR.1.395 <dbl> …
## $ old_price_SR.1.400 <dbl> …
## $ old_price_SR.1.420 <dbl> …
## $ old_price_SR.1.450 <dbl> …
## $ old_price_SR.1.495 <dbl> …
## $ old_price_SR.1.525 <dbl> …
## $ old_price_SR.1.535 <dbl> …
## $ old_price_SR.1.545 <dbl> …
## $ old_price_SR.1.580 <dbl> …
## $ old_price_SR.1.590 <dbl> …
## $ old_price_SR.1.595 <dbl> …
## $ old_price_SR.1.600 <dbl> …
## $ old_price_SR.1.620 <dbl> …
## $ old_price_SR.1.625 <dbl> …
## $ old_price_SR.1.645 <dbl> …
## $ old_price_SR.1.650 <dbl> …
## $ old_price_SR.1.655 <dbl> …
## $ old_price_SR.1.675 <dbl> …
## $ old_price_SR.1.695 <dbl> …
## $ old_price_SR.1.700 <dbl> …
## $ old_price_SR.1.715 <dbl> …
## $ old_price_SR.1.735 <dbl> …
## $ old_price_SR.1.785 <dbl> …
## $ old_price_SR.1.815 <dbl> …
## $ old_price_SR.1.835 <dbl> …
## $ old_price_SR.1.865 <dbl> …
## $ old_price_SR.1.895 <dbl> …
## $ old_price_SR.1.925 <dbl> …
## $ old_price_SR.1.948 <dbl> …
## $ old_price_SR.1.950 <dbl> …
## $ old_price_SR.1.975 <dbl> …
## $ old_price_SR.1.995 <dbl> …
## $ old_price_SR.10 <dbl> …
## $ old_price_SR.100 <dbl> …
## $ old_price_SR.105 <dbl> …
## $ old_price_SR.125 <dbl> …
## $ old_price_SR.138 <dbl> …
## $ old_price_SR.145 <dbl> …
## $ old_price_SR.15 <dbl> …
## $ old_price_SR.150 <dbl> …
## $ old_price_SR.175 <dbl> …
## $ old_price_SR.175.2.pack <dbl> …
## $ old_price_SR.178 <dbl> …
## $ old_price_SR.179 <dbl> …
## $ old_price_SR.185 <dbl> …
## $ old_price_SR.2.035 <dbl> …
## $ old_price_SR.2.045 <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.125 <dbl> …
## $ old_price_SR.2.138 <dbl> …
## $ old_price_SR.2.155 <dbl> …
## $ old_price_SR.2.175 <dbl> …
## $ old_price_SR.2.205 <dbl> …
## $ old_price_SR.2.220 <dbl> …
## $ old_price_SR.2.225 <dbl> …
## $ old_price_SR.2.230 <dbl> …
## $ old_price_SR.2.235 <dbl> …
## $ old_price_SR.2.240 <dbl> …
## $ old_price_SR.2.245 <dbl> …
## $ old_price_SR.2.270 <dbl> …
## $ old_price_SR.2.275 <dbl> …
## $ old_price_SR.2.295 <dbl> …
## $ old_price_SR.2.360 <dbl> …
## $ old_price_SR.2.368 <dbl> …
## $ old_price_SR.2.375 <dbl> …
## $ old_price_SR.2.395 <dbl> …
## $ old_price_SR.2.435 <dbl> …
## $ old_price_SR.2.485 <dbl> …
## $ old_price_SR.2.560 <dbl> …
## $ old_price_SR.2.565 <dbl> …
## $ old_price_SR.2.580 <dbl> …
## $ old_price_SR.2.605 <dbl> …
## $ old_price_SR.2.695 <dbl> …
## $ old_price_SR.2.745 <dbl> …
## $ old_price_SR.2.750 <dbl> …
## $ old_price_SR.2.760 <dbl> …
## $ old_price_SR.2.770 <dbl> …
## $ old_price_SR.2.795 <dbl> …
## $ old_price_SR.2.815 <dbl> …
## $ old_price_SR.2.830 <dbl> …
## $ old_price_SR.2.870 <dbl> …
## $ old_price_SR.2.875 <dbl> …
## $ old_price_SR.2.900 <dbl> …
## $ old_price_SR.2.945 <dbl> …
## $ old_price_SR.2.995 <dbl> …
## $ old_price_SR.20 <dbl> …
## $ old_price_SR.205 <dbl> …
## $ old_price_SR.225 <dbl> …
## $ old_price_SR.235 <dbl> …
## $ old_price_SR.237 <dbl> …
## $ old_price_SR.240 <dbl> …
## $ old_price_SR.250 <dbl> …
## $ old_price_SR.263 <dbl> …
## $ old_price_SR.27 <dbl> …
## $ old_price_SR.275 <dbl> …
## $ old_price_SR.29 <dbl> …
## $ old_price_SR.295 <dbl> …
## $ old_price_SR.3.025 <dbl> …
## $ old_price_SR.3.045 <dbl> …
## $ old_price_SR.3.130 <dbl> …
## $ old_price_SR.3.145 <dbl> …
## $ old_price_SR.3.208 <dbl> …
## $ old_price_SR.3.250 <dbl> …
## $ old_price_SR.3.265 <dbl> …
## $ old_price_SR.3.269 <dbl> …
## $ old_price_SR.3.290 <dbl> …
## $ old_price_SR.3.370 <dbl> …
## $ old_price_SR.3.375 <dbl> …
## $ old_price_SR.3.425 <dbl> …
## $ old_price_SR.3.435 <dbl> …
## $ old_price_SR.3.440 <dbl> …
## $ old_price_SR.3.490 <dbl> …
## $ old_price_SR.3.585 <dbl> …
## $ old_price_SR.3.665 <dbl> …
## $ old_price_SR.3.690 <dbl> …
## $ old_price_SR.3.735 <dbl> …
## $ old_price_SR.3.760 <dbl> …
## $ old_price_SR.3.790 <dbl> …
## $ old_price_SR.3.885 <dbl> …
## $ old_price_SR.3.945 <dbl> …
## $ old_price_SR.3.965 <dbl> …
## $ old_price_SR.3.995 <dbl> …
## $ old_price_SR.30 <dbl> …
## $ old_price_SR.300 <dbl> …
## $ old_price_SR.310 <dbl> …
## $ old_price_SR.325 <dbl> …
## $ old_price_SR.326 <dbl> …
## $ old_price_SR.340 <dbl> …
## $ old_price_SR.345 <dbl> …
## $ old_price_SR.349 <dbl> …
## $ old_price_SR.35 <dbl> …
## $ old_price_SR.350 <dbl> …
## $ old_price_SR.360 <dbl> …
## $ old_price_SR.370 <dbl> …
## $ old_price_SR.375 <dbl> …
## $ old_price_SR.380 <dbl> …
## $ old_price_SR.383 <dbl> …
## $ old_price_SR.390 <dbl> …
## $ old_price_SR.395 <dbl> …
## $ old_price_SR.4.040 <dbl> …
## $ old_price_SR.4.090 <dbl> …
## $ old_price_SR.4.185 <dbl> …
## $ old_price_SR.4.195 <dbl> …
## $ old_price_SR.4.235 <dbl> …
## $ old_price_SR.4.445 <dbl> …
## $ old_price_SR.4.475 <dbl> …
## $ old_price_SR.4.490 <dbl> …
## $ old_price_SR.4.495 <dbl> …
## $ old_price_SR.4.510 <dbl> …
## $ old_price_SR.4.870 <dbl> …
## $ old_price_SR.4.885 <dbl> …
## $ old_price_SR.4.920 <dbl> …
## $ old_price_SR.400 <dbl> …
## $ old_price_SR.410 <dbl> …
## $ old_price_SR.420 <dbl> …
## $ old_price_SR.425 <dbl> …
## $ old_price_SR.437 <dbl> …
## $ old_price_SR.438 <dbl> …
## $ old_price_SR.444 <dbl> …
## $ old_price_SR.445 <dbl> …
## $ old_price_SR.445.2.pack <dbl> …
## $ old_price_SR.446 <dbl> …
## $ old_price_SR.45 <dbl> …
## $ old_price_SR.450 <dbl> …
## $ old_price_SR.452 <dbl> …
## $ old_price_SR.455 <dbl> …
## $ old_price_SR.475 <dbl> …
## $ old_price_SR.490 <dbl> …
## $ old_price_SR.495 <dbl> …
## $ old_price_SR.5.145 <dbl> …
## $ old_price_SR.5.215 <dbl> …
## $ old_price_SR.5.275 <dbl> …
## $ old_price_SR.5.560 <dbl> …
## $ old_price_SR.5.640 <dbl> …
## $ old_price_SR.5.890 <dbl> …
## $ old_price_SR.50 <dbl> …
## $ old_price_SR.50.4.pack <dbl> …
## $ old_price_SR.500 <dbl> …
## $ old_price_SR.505 <dbl> …
## $ old_price_SR.519 <dbl> …
## $ old_price_SR.520 <dbl> …
## $ old_price_SR.530 <dbl> …
## $ old_price_SR.540 <dbl> …
## $ old_price_SR.545 <dbl> …
## $ old_price_SR.55 <dbl> …
## $ old_price_SR.550 <dbl> …
## $ old_price_SR.557 <dbl> …
## $ old_price_SR.569 <dbl> …
## $ old_price_SR.570 <dbl> …
## $ old_price_SR.575 <dbl> …
## $ old_price_SR.587 <dbl> …
## $ old_price_SR.59 <dbl> …
## $ old_price_SR.595 <dbl> …
## $ old_price_SR.6.530 <dbl> …
## $ old_price_SR.6.590 <dbl> …
## $ old_price_SR.6.625 <dbl> …
## $ old_price_SR.6.660 <dbl> …
## $ old_price_SR.6.785 <dbl> …
## $ old_price_SR.625 <dbl> …
## $ old_price_SR.627 <dbl> …
## $ old_price_SR.635 <dbl> …
## $ old_price_SR.645 <dbl> …
## $ old_price_SR.649 <dbl> …
## $ old_price_SR.65 <dbl> …
## $ old_price_SR.655 <dbl> …
## $ old_price_SR.657 <dbl> …
## $ old_price_SR.660 <dbl> …
## $ old_price_SR.695 <dbl> …
## $ old_price_SR.7 <dbl> …
## $ old_price_SR.7.090 <dbl> …
## $ old_price_SR.7.245 <dbl> …
## $ old_price_SR.7.380 <dbl> …
## $ old_price_SR.7.700 <dbl> …
## $ old_price_SR.7.785 <dbl> …
## $ old_price_SR.725 <dbl> …
## $ old_price_SR.732 <dbl> …
## $ old_price_SR.745 <dbl> …
## $ old_price_SR.75 <dbl> …
## $ old_price_SR.750 <dbl> …
## $ old_price_SR.775 <dbl> …
## $ old_price_SR.776 <dbl> …
## $ old_price_SR.780 <dbl> …
## $ old_price_SR.785 <dbl> …
## $ old_price_SR.795 <dbl> …
## $ old_price_SR.8.000 <dbl> …
## $ old_price_SR.8.180 <dbl> …
## $ old_price_SR.8.350 <dbl> …
## $ old_price_SR.8.475 <dbl> …
## $ old_price_SR.8.540 <dbl> …
## $ old_price_SR.8.735 <dbl> …
## $ old_price_SR.800 <dbl> …
## $ old_price_SR.820 <dbl> …
## $ old_price_SR.840 <dbl> …
## $ old_price_SR.845 <dbl> …
## $ old_price_SR.85 <dbl> …
## $ old_price_SR.850 <dbl> …
## $ old_price_SR.890 <dbl> …
## $ old_price_SR.892 <dbl> …
## $ old_price_SR.895 <dbl> …
## $ old_price_SR.9.430 <dbl> …
## $ old_price_SR.9.685 <dbl> …
## $ old_price_SR.9.745 <dbl> …
## $ old_price_SR.9.985 <dbl> …
## $ old_price_SR.90 <dbl> …
## $ old_price_SR.900 <dbl> …
## $ old_price_SR.910 <dbl> …
## $ old_price_SR.915 <dbl> …
## $ old_price_SR.925 <dbl> …
## $ old_price_SR.951 <dbl> …
## $ old_price_SR.955 <dbl> …
## $ old_price_SR.980 <dbl> …
## $ old_price_SR.981 <dbl> …
## $ old_price_SR.995 <dbl> …
## $ other_colors_Yes <dbl> …
## $ short_description_X1.seat.section <dbl> …
## $ short_description_X1.section...........52x36x222.350.cm <dbl> …
## $ short_description_X1.section...........78x31x171.cm <dbl> …
## $ short_description_X1.section...........84x55x216.cm <dbl> …
## $ short_description_X1.section...........92x36x222.350.cm <dbl> …
## $ short_description_X1.section...........92x51x222.350.cm <dbl> …
## $ short_description_X1.section.bottle.racks...........89x30x124.cm <dbl> …
## $ short_description_X1.section.shelves...........89x30x179.cm <dbl> …
## $ short_description_X1.section.shelves...........89x50x179.cm <dbl> …
## $ short_description_X1.section.shelves.drawers...........48x30x179.cm <dbl> …
## $ short_description_X2.seat.conversation.set..outdoor <dbl> …
## $ short_description_X2.seat.modular.sofa <dbl> …
## $ short_description_X2.seat.modular.sofa.w.2.sofa.beds <dbl> …
## $ short_description_X2.seat.modular.sofa.with.sofa.bed <dbl> …
## $ short_description_X2.seat.modular.sofa..outdoor...........160x80x89.cm <dbl> …
## $ short_description_X2.seat.modular.sofa..outdoor...........161x82x84.cm <dbl> …
## $ short_description_X2.seat.modular.sofa..outdoor...........161x82x87.cm <dbl> …
## $ short_description_X2.seat.platform <dbl> …
## $ short_description_X2.seat.section <dbl> …
## $ short_description_X2.seat.sofa <dbl> …
## $ short_description_X2.seat.sofa.bed <dbl> …
## $ short_description_X2.seat.sofa.bed.section <dbl> …
## $ short_description_X2.seat.sofa.with.side.table <dbl> …
## $ short_description_X2.seat.sofa..in.outdoor...........164x94x90.cm <dbl> …
## $ short_description_X2.seat.sofa..in.outdoor...........179x94x90.cm <dbl> …
## $ short_description_X2.seat.sofa..outdoor...........118x67x80.cm <dbl> …
## $ short_description_X2.legs.and.2.castors <dbl> …
## $ short_description_X2.sec.storage.unit.w.foldable.table...........134x30.104x226.cm <dbl> …
## $ short_description_X2.sec.storage.unit.w.foldable.table...........175x30.104x179.cm <dbl> …
## $ short_description_X2.sections...........125x55x126.cm <dbl> …
## $ short_description_X2.sections...........125x55x216.cm <dbl> …
## $ short_description_X2.sections...........135x51x222.350.cm <dbl> …
## $ short_description_X2.sections...........165x55x216.cm <dbl> …
## $ short_description_X2.sections...........175x51x222.350.cm <dbl> …
## $ short_description_X2.sections.shelves...........127x41x180.cm <dbl> …
## $ short_description_X2.sections.shelves...........134x30x179.cm <dbl> …
## $ short_description_X2.sections.shelves...........134x50x179.cm <dbl> …
## $ short_description_X2.sections.shelves...........134x50x226.cm <dbl> …
## $ short_description_X2.sections.shelves...........174x30x124.cm <dbl> …
## $ short_description_X2.sections.shelves...........174x50x124.cm <dbl> …
## $ short_description_X2.sections.shelves...........174x50x226.cm <dbl> …
## $ short_description_X2.sections.shelves.cabinet...........174x30x179.cm <dbl> …
## $ short_description_X2.shelf.sections...........197x36x181.cm <dbl> …
## $ short_description_X2.shelf.sections...........211x36x94.cm <dbl> …
## $ short_description_X3.seat.modular.sofa <dbl> …
## $ short_description_X3.seat.modular.sofa.with.sofa.bed <dbl> …
## $ short_description_X3.seat.modular.sofa..outdoor <dbl> …
## $ short_description_X3.seat.modular.sofa..outdoor...........143.223x80x84.cm <dbl> …
## $ short_description_X3.seat.modular.sofa..outdoor...........222x80x90.cm <dbl> …
## $ short_description_X3.seat.modular.sofa..outdoor...........223x144x88.cm <dbl> …
## $ short_description_X3.seat.modular.sofa..outdoor...........223x82x84.cm <dbl> …
## $ short_description_X3.seat.platform <dbl> …
## $ short_description_X3.seat.section <dbl> …
## $ short_description_X3.seat.sofa <dbl> …
## $ short_description_X3.seat.sofa.bed <dbl> …
## $ short_description_X3.seat.sofa..in.outdoor...........245x94x90.cm <dbl> …
## $ short_description_X3.seat.sofa..in.outdoor...........260x94x90.cm <dbl> …
## $ short_description_X3.seat.sofa..outdoor <dbl> …
## $ short_description_X3.sections...........165x55x216.cm <dbl> …
## $ short_description_X3.sections...........178x51x222.350.cm <dbl> …
## $ short_description_X3.sections...........205x55x216.cm <dbl> …
## $ short_description_X3.sections...........218x51x222.350.cm <dbl> …
## $ short_description_X3.sections...........245x55x216.cm <dbl> …
## $ short_description_X3.sections...........258x51x222.350.cm <dbl> …
## $ short_description_X3.sections.cabinet.shelves...........259x30x226.cm <dbl> …
## $ short_description_X3.sections.shelves...........139x50x124.226.cm <dbl> …
## $ short_description_X3.sections.shelves...........219x30x226.cm <dbl> …
## $ short_description_X3.sections.shelves...........230x50x171.cm <dbl> …
## $ short_description_X3.sections.shelves...........259x30x179.cm <dbl> …
## $ short_description_X3.sections.shelves...........259x50x226.cm <dbl> …
## $ short_description_X3.sections.shelves.cabinet...........259x30x124.cm <dbl> …
## $ short_description_X4.seat.conversation.set..in.outdoor <dbl> …
## $ short_description_X4.seat.conversation.set..outdoor <dbl> …
## $ short_description_X4.seat.modular.sofa.w.3.sofa.beds <dbl> …
## $ short_description_X4.seat.sofa <dbl> …
## $ short_description_X4.seat.sofa..in.outdoor...........326x94x90.cm <dbl> …
## $ short_description_X4.seat.sofa..in.outdoor...........341x94x90.cm <dbl> …
## $ short_description_X4.sections...........262x36x222.350.cm <dbl> …
## $ short_description_X4.sections...........262x51x222.350.cm <dbl> …
## $ short_description_X4.sections.shelves...........179x50x179.cm <dbl> …
## $ short_description_X4.sections.shelves...........307x50x171.cm <dbl> …
## $ short_description_X4.sections.shelves...........344x30x226.cm <dbl> …
## $ short_description_X4.sections.shelves.cabinet...........344x30x226.cm <dbl> …
## $ short_description_X5.seat.sofa <dbl> …
## $ short_description_X5.sections...........385x51x222.350.cm <dbl> …
## $ short_description_Active.sit.stand.support <dbl> …
## $ short_description_Add.on.unit.high...........105x65.cm <dbl> …
## $ short_description_Add.on.unit...........120x10.cm <dbl> …
## $ short_description_Add.on.unit...........58x23.cm <dbl> …
## $ short_description_Add.on.unit...........64x39.cm <dbl> …
## $ short_description_Adjustable.clothes.rail...........46.82.cm <dbl> …
## $ short_description_Arbor.bench...........119x48.cm <dbl> …
## $ short_description_Armchair <dbl> …
## $ short_description_Armchair.bed <dbl> …
## $ short_description_Armchair.cover <dbl> …
## $ short_description_Armchair.cushion <dbl> …
## $ short_description_Armchair..in.outdoor...........98x94x90.cm <dbl> …
## $ short_description_Armchair..outdoor <dbl> …
## $ short_description_Armrest <dbl> …
## $ short_description_Armrest.section..outdoor <dbl> …
## $ short_description_Armrest.with.cushion <dbl> …
## $ short_description_Babycare.mat...........48x74.cm <dbl> …
## $ short_description_Back.cushion..outdoor...........62x42.cm <dbl> …
## $ short_description_Back.cushion..outdoor...........62x44.cm <dbl> …
## $ short_description_Back.cushion..outdoor...........72x98.cm <dbl> …
## $ short_description_Back.rest...........100x80.cm <dbl> …
## $ short_description_Backrest.with.cushion <dbl> …
## $ short_description_Backrest...........80x80.cm <dbl> …
## $ short_description_Bar.stool.with.backrest.frame...........74.cm <dbl> …
## $ short_description_Bar.stool.with.backrest...........63.cm <dbl> …
## $ short_description_Bar.stool.with.backrest...........66.cm <dbl> …
## $ short_description_Bar.stool.with.backrest...........74.cm <dbl> …
## $ short_description_Bar.stool.with.backrest...........75.cm <dbl> …
## $ short_description_Bar.stool.with.backrest..foldable...........63.cm <dbl> …
## $ short_description_Bar.stool.with.backrest..foldable...........74.cm <dbl> …
## $ short_description_Bar.stool...........63.cm <dbl> …
## $ short_description_Bar.stool...........75.cm <dbl> …
## $ short_description_Bar.stool...........76.cm <dbl> …
## $ short_description_Bar.stool...........77.cm <dbl> …
## $ short_description_Bar.table.and.2.bar.stools <dbl> …
## $ short_description_Bar.table.and.2.bar.stools...........74.cm <dbl> …
## $ short_description_Bar.table.and.4.bar.stools <dbl> …
## $ short_description_Bar.table.and.4.bar.stools...........120.cm <dbl> …
## $ short_description_Bar.table...........120x80.cm <dbl> …
## $ short_description_Bar.table...........140x80.cm <dbl> …
## $ short_description_Bar.table...........70.cm <dbl> …
## $ short_description_Bar.table...........70x70.cm <dbl> …
## $ short_description_Bar.table...........74x74.cm <dbl> …
## $ short_description_Bar.table..in.outdoor...........51x51.cm <dbl> …
## $ short_description_Bath.mat...........50x80.cm <dbl> …
## $ short_description_Beanbag..in.outdoor <dbl> …
## $ short_description_Bed.canopy <dbl> …
## $ short_description_Bed.frame.w.storage.and.headboard...........140x200.cm <dbl> …
## $ short_description_Bed.frame.w.storage.and.headboard...........90x200.cm <dbl> …
## $ short_description_Bed.frame.with.10.drawers...........140x244x103.cm <dbl> …
## $ short_description_Bed.frame.with.2.door.3.drawers...........142x244x163.cm <dbl> …
## $ short_description_Bed.frame.with.2.side.tables...........160x200.cm <dbl> …
## $ short_description_Bed.frame.with.2.storage.boxes...........140x200.cm <dbl> …
## $ short_description_Bed.frame.with.2.storage.boxes...........90x200.cm <dbl> …
## $ short_description_Bed.frame.with.3.storage.boxes...........90x200.cm <dbl> …
## $ short_description_Bed.frame.with.4.doors.6.drawers...........140x200x223.cm <dbl> …
## $ short_description_Bed.frame.with.4.drawers...........140x244x163.cm <dbl> …
## $ short_description_Bed.frame.with.4.drawers...........142x244x43.cm <dbl> …
## $ short_description_Bed.frame.with.4.storage.boxes...........140x200.cm <dbl> …
## $ short_description_Bed.frame.with.6.doors.12.drawers...........140x244x203.cm <dbl> …
## $ short_description_Bed.frame.with.headboard...........160x200.cm <dbl> …
## $ short_description_Bed.frame.with.slatted.bed.base...........70x160.cm <dbl> …
## $ short_description_Bed.frame.with.slatted.bed.base...........90x200.cm <dbl> …
## $ short_description_Bed.frame.with.storage...........140x200.cm <dbl> …
## $ short_description_Bed.frame.with.storage...........140x244x223.cm <dbl> …
## $ short_description_Bed.frame.with.storage...........90x200.cm <dbl> …
## $ short_description_Bed.frame.with.underbed.and.storage...........90x200.cm <dbl> …
## $ short_description_Bed.frame...........140x200.cm <dbl> …
## $ short_description_Bed.frame...........160x200.cm <dbl> …
## $ short_description_Bed.frame...........90x200.cm <dbl> …
## $ short_description_Bed.frame..high...........90x200.cm <dbl> …
## $ short_description_Bed.frame..high..w.2.storage.boxes...........180x200.cm <dbl> …
## $ short_description_Bed.frame..high..w.2.storage.boxes...........90x200.cm <dbl> …
## $ short_description_Bed.frame..high..w.4.storage.boxes...........140x200.cm <dbl> …
## $ short_description_Bed.frame.headboard.2.side.tables...........160x200.cm <dbl> …
## $ short_description_Bed.tent <dbl> …
## $ short_description_Bed.tent.with.curtain <dbl> …
## $ short_description_Bed.tent...........70.80.90 <dbl> …
## $ short_description_Bedside.table...........30x50.cm <dbl> …
## $ short_description_Bedside.table...........37x28.cm <dbl> …
## $ short_description_Bedside.table...........40x40.cm <dbl> …
## $ short_description_Bedside.table...........42x40.cm <dbl> …
## $ short_description_Bedside.table...........42x74.cm <dbl> …
## $ short_description_Bedside.table...........45x35.cm <dbl> …
## $ short_description_Bedside.table...........45x40.cm <dbl> …
## $ short_description_Bedside.table...........48x38.cm <dbl> …
## $ short_description_Bedside.table...........60x39.cm <dbl> …
## $ short_description_Bench <dbl> …
## $ short_description_Bench.with.backrest..outdoor <dbl> …
## $ short_description_Bench.with.shoe.storage...........85x32.cm <dbl> …
## $ short_description_Bench.with.storage.compartments...........100x51.cm <dbl> …
## $ short_description_Bench.with.toy.storage...........90x50x50.cm <dbl> …
## $ short_description_Bench...........103.cm <dbl> …
## $ short_description_Bench...........105x36.cm <dbl> …
## $ short_description_Bench...........80.cm <dbl> …
## $ short_description_Bench...........83.cm <dbl> …
## $ short_description_Bench...........88x53.cm <dbl> …
## $ short_description_Bench...........90x50x50.cm <dbl> …
## $ short_description_Bench..outdoor...........114.cm <dbl> …
## $ short_description_Bench..outdoor...........136.cm <dbl> …
## $ short_description_Book.end <dbl> …
## $ short_description_Bookcase.combination.hght.extension...........120x28x237.cm <dbl> …
## $ short_description_Bookcase.w.height.extension.ut.drs...........160x30x237.cm <dbl> …
## $ short_description_Bookcase.w.hght.ext.ut.pnl.glss.drs...........40x30x237.cm <dbl> …
## $ short_description_Bookcase.w.hght.ext.ut.pnl.glss.drs...........80x30x237.cm <dbl> …
## $ short_description_Bookcase.with.display.shelf...........80x28x106.cm <dbl> …
## $ short_description_Bookcase.with.display.shelf...........80x28x202.cm <dbl> …
## $ short_description_Bookcase.with.door...........40x30x106.cm <dbl> …
## $ short_description_Bookcase.with.doors...........80x30x106.cm <dbl> …
## $ short_description_Bookcase.with.doors...........80x30x202.cm <dbl> …
## $ short_description_Bookcase.with.drawers...........60x50x128.cm <dbl> …
## $ short_description_Bookcase.with.glass.doors...........80x30x106.cm <dbl> …
## $ short_description_Bookcase.with.glass.doors...........80x30x202.cm <dbl> …
## $ short_description_Bookcase.with.glass.doors...........96x214.cm <dbl> …
## $ short_description_Bookcase.with.glass.door...........40x30x106.cm <dbl> …
## $ short_description_Bookcase.with.glass.door...........40x30x237.cm <dbl> …
## $ short_description_Bookcase.with.panel.glass.door...........40x30x202.cm <dbl> …
## $ short_description_Bookcase.with.panel.glass.doors...........120x30x202.cm <dbl> …
## $ short_description_Bookcase.with.panel.glass.doors...........160x30x202.cm <dbl> …
## $ short_description_Bookcase.with.panel.glass.doors...........80x30x202.cm <dbl> …
## $ short_description_Bookcase...........120x28x237.cm <dbl> …
## $ short_description_Bookcase...........120x30x237.cm <dbl> …
## $ short_description_Bookcase...........160x28x202.cm <dbl> …
## $ short_description_Bookcase...........160x30x202.cm <dbl> …
## $ short_description_Bookcase...........160x30x237.cm <dbl> …
## $ short_description_Bookcase...........200x28x202.cm <dbl> …
## $ short_description_Bookcase...........200x28x237.cm <dbl> …
## $ short_description_Bookcase...........200x30x106.cm <dbl> …
## $ short_description_Bookcase...........200x30x237.cm <dbl> …
## $ short_description_Bookcase...........229x197.cm <dbl> …
## $ short_description_Bookcase...........240x28x106.cm <dbl> …
## $ short_description_Bookcase...........40x28x106.cm <dbl> …
## $ short_description_Bookcase...........40x28x202.cm <dbl> …
## $ short_description_Bookcase...........49x197.cm <dbl> …
## $ short_description_Bookcase...........60x180.cm <dbl> …
## $ short_description_Bookcase...........60x190.cm <dbl> …
## $ short_description_Bookcase...........65x199.cm <dbl> …
## $ short_description_Bookcase...........67x190.cm <dbl> …
## $ short_description_Bookcase...........80x28x202.cm <dbl> …
## $ short_description_Bookcase...........80x28x237.cm <dbl> …
## $ short_description_Bookcase...........80x30x202.cm <dbl> …
## $ short_description_Bookcase...........90x197.cm <dbl> …
## $ short_description_Bookcase...........96x214.cm <dbl> …
## $ short_description_Bottle.rack...........83x30.cm <dbl> …
## $ short_description_Bracket.for.TV..swivel...........37.55.. <dbl> …
## $ short_description_Bracket...........38.cm <dbl> …
## $ short_description_Bunk.bed.frame.with.underbed...........90x200.cm <dbl> …
## $ short_description_Bunk.bed.frame...........90x200.cm <dbl> …
## $ short_description_Cabinet.combination.for.TV...........180x40x170.cm <dbl> …
## $ short_description_Cabinet.combination.for.TV...........210x40x220.cm <dbl> …
## $ short_description_Cabinet.combination.with.feet...........105x35x72.cm <dbl> …
## $ short_description_Cabinet.combination.with.feet...........210x35x180.cm <dbl> …
## $ short_description_Cabinet.combination.with.feet...........280x35x72.cm <dbl> …
## $ short_description_Cabinet.combination.with.feet...........35x35x107.cm <dbl> …
## $ short_description_Cabinet.combination.with.feet...........70x25x72.cm <dbl> …
## $ short_description_Cabinet.combination.with.feet...........70x35x212.cm <dbl> …
## $ short_description_Cabinet.combination.with.feet...........70x35x72.cm <dbl> …
## $ short_description_Cabinet.combination.with.legs...........140x35x80.cm <dbl> …
## $ short_description_Cabinet.combination.with.legs...........210x35x210.cm <dbl> …
## $ short_description_Cabinet.combination.with.legs...........35x35x80.cm <dbl> …
## $ short_description_Cabinet.combination.with.legs...........70x35x80.cm <dbl> …
## $ short_description_Cabinet.combination...........120x35x57.cm <dbl> …
## $ short_description_Cabinet.in.outdoor...........80x81.cm <dbl> …
## $ short_description_Cabinet.unit...........60x40x202.cm <dbl> …
## $ short_description_Cabinet.w.2.doors.and.1.shelf...........70x35x70.cm <dbl> …
## $ short_description_Cabinet.w.door.and.1.shelf...........35x35x70.cm <dbl> …
## $ short_description_Cabinet.w.door.and.2.shelves...........35x25x70.cm <dbl> …
## $ short_description_Cabinet.with.2.doors...........61x35.cm <dbl> …
## $ short_description_Cabinet.with.2.doors...........76x40x66.cm <dbl> …
## $ short_description_Cabinet.with.2.drawers...........35x35x35.cm <dbl> …
## $ short_description_Cabinet.with.2.drawers...........70x35x35.cm <dbl> …
## $ short_description_Cabinet.with.3.drawers...........70x35x70.cm <dbl> …
## $ short_description_Cabinet.with.4.compartments...........70x35x70.cm <dbl> …
## $ short_description_Cabinet.with.door...........35x35x35.cm <dbl> …
## $ short_description_Cabinet.with.doors...........78x95.cm <dbl> …
## $ short_description_Cabinet.with.doors...........80x83.cm <dbl> …
## $ short_description_Cabinet.with.doors...........80x93.cm <dbl> …
## $ short_description_Cabinet.with.doors...........89x30x124.cm <dbl> …
## $ short_description_Cabinet.with.glass.doors...........100x123.cm <dbl> …
## $ short_description_Cabinet.with.glass.doors...........86x199.cm <dbl> …
## $ short_description_Cabinet.with.mirror...........70x47.cm <dbl> …
## $ short_description_Cabinet.with.plinth...........121x47x89.cm <dbl> …
## $ short_description_Cabinet.with.plinth...........81x37x134.cm <dbl> …
## $ short_description_Cabinet.with.plinth...........81x47x89.cm <dbl> …
## $ short_description_Cabinet.with.sliding.glass.doors...........120x140.cm <dbl> …
## $ short_description_Cabinet.with.smart.lock...........80x119.cm <dbl> …
## $ short_description_Cabinet...........118x110.cm <dbl> …
## $ short_description_Cabinet...........119x63.cm <dbl> …
## $ short_description_Cabinet...........35x25x35.cm <dbl> …
## $ short_description_Cabinet...........35x35.cm <dbl> …
## $ short_description_Cabinet...........35x35x35.cm <dbl> …
## $ short_description_Cabinet...........45x50.cm <dbl> …
## $ short_description_Cabinet...........45x75.cm <dbl> …
## $ short_description_Cabinet...........60x35.cm <dbl> …
## $ short_description_Cabinet...........80x30x83.cm <dbl> …
## $ short_description_Cabinet...........81x35x123.cm <dbl> …
## $ short_description_Castor <dbl> …
## $ short_description_Chair <dbl> …
## $ short_description_Chair.cover <dbl> …
## $ short_description_Chair.cushion...........38x38x6.5.cm <dbl> …
## $ short_description_Chair.cushion...........40.35x38x7.cm <dbl> …
## $ short_description_Chair.cushion..outdoor...........35.cm <dbl> …
## $ short_description_Chair.cushion..outdoor...........36x32.cm <dbl> …
## $ short_description_Chair.cushion..outdoor...........40x40.cm <dbl> …
## $ short_description_Chair.cushion..outdoor...........44x44.cm <dbl> …
## $ short_description_Chair.cushion..outdoor...........50x50.cm <dbl> …
## $ short_description_Chair.frame <dbl> …
## $ short_description_Chair.pad <dbl> …
## $ short_description_Chair.pad...........34.cm <dbl> …
## $ short_description_Chair.pad...........35.cm <dbl> …
## $ short_description_Chair.pad...........35.42x40x4.0.cm <dbl> …
## $ short_description_Chair.pad...........36.cm <dbl> …
## $ short_description_Chair.pad...........36.0.cm <dbl> …
## $ short_description_Chair.pad...........36x36x3.0.cm <dbl> …
## $ short_description_Chair.pad...........37x37x1.8.cm <dbl> …
## $ short_description_Chair.with.armrests <dbl> …
## $ short_description_Chair.with.armrests..outdoor <dbl> …
## $ short_description_Chair.with.chair.pad <dbl> …
## $ short_description_Chair.with.long.cover <dbl> …
## $ short_description_Chair..outdoor <dbl> …
## $ short_description_Chaise.longue <dbl> …
## $ short_description_Chaise.longue.section <dbl> …
## $ short_description_Chaise.longue.with.armrest <dbl> …
## $ short_description_Chaise.longue..add.on.unit <dbl> …
## $ short_description_Changing.table <dbl> …
## $ short_description_Changing.table.with.4.drawers...........90x79x102.cm <dbl> …
## $ short_description_Changing.table.with.drawers...........90x79x102.cm <dbl> …
## $ short_description_Changing.table...........72x53.cm <dbl> …
## $ short_description_Changing.table.bookshelf <dbl> …
## $ short_description_Changing.table.chest.of.drawers <dbl> …
## $ short_description_Changing.table.desk <dbl> …
## $ short_description_Changing.tbl.bookshelf.w.1.shlf.ut <dbl> …
## $ short_description_Changing.tbl.bookshelf.w.2.shlf.ut <dbl> …
## $ short_description_Chest.of.2.drawers...........35x49.cm <dbl> …
## $ short_description_Chest.of.2.drawers...........40x54.cm <dbl> …
## $ short_description_Chest.of.2.drawers...........40x55.cm <dbl> …
## $ short_description_Chest.of.2.drawers...........41x48.cm <dbl> …
## $ short_description_Chest.of.2.drawers...........54x66.cm <dbl> …
## $ short_description_Chest.of.2.drawers...........60x57x53.cm <dbl> …
## $ short_description_Chest.of.2.drawers...........80x57x53.cm <dbl> …
## $ short_description_Chest.of.2.drawers...........80x75.cm <dbl> …
## $ short_description_Chest.of.3.drawers...........120x54.cm <dbl> …
## $ short_description_Chest.of.3.drawers...........40x76.cm <dbl> …
## $ short_description_Chest.of.3.drawers...........55x62.cm <dbl> …
## $ short_description_Chest.of.3.drawers...........60x57x73.cm <dbl> …
## $ short_description_Chest.of.3.drawers...........60x64.cm <dbl> …
## $ short_description_Chest.of.3.drawers...........62x70.cm <dbl> …
## $ short_description_Chest.of.3.drawers...........70x72.cm <dbl> …
## $ short_description_Chest.of.3.drawers...........78x95.cm <dbl> …
## $ short_description_Chest.of.3.drawers...........80x57x73.cm <dbl> …
## $ short_description_Chest.of.3.drawers...........80x76.cm <dbl> …
## $ short_description_Chest.of.3.drawers...........80x78.cm <dbl> …
## $ short_description_Chest.of.3.drawers...........90x83.cm <dbl> …
## $ short_description_Chest.of.4.drawers...........159x50.cm <dbl> …
## $ short_description_Chest.of.4.drawers...........160x54.cm <dbl> …
## $ short_description_Chest.of.4.drawers...........40x99.cm <dbl> …
## $ short_description_Chest.of.4.drawers...........67x102.cm <dbl> …
## $ short_description_Chest.of.4.drawers...........78x124.cm <dbl> …
## $ short_description_Chest.of.4.drawers...........80x100.cm <dbl> …
## $ short_description_Chest.of.4.drawers...........82x104.cm <dbl> …
## $ short_description_Chest.of.4.drawers...........87x76.cm <dbl> …
## $ short_description_Chest.of.5.drawers...........120x76.cm <dbl> …
## $ short_description_Chest.of.5.drawers...........45x109.cm <dbl> …
## $ short_description_Chest.of.5.drawers...........70x112.cm <dbl> …
## $ short_description_Chest.of.5.drawers...........90x90.cm <dbl> …
## $ short_description_Chest.of.6.drawers...........108x131.cm <dbl> …
## $ short_description_Chest.of.6.drawers...........127x81.cm <dbl> …
## $ short_description_Chest.of.6.drawers...........160x54.cm <dbl> …
## $ short_description_Chest.of.6.drawers...........160x78.cm <dbl> …
## $ short_description_Chest.of.6.drawers...........40x123.cm <dbl> …
## $ short_description_Chest.of.6.drawers...........60x50x128.cm <dbl> …
## $ short_description_Chest.of.6.drawers...........63x126.cm <dbl> …
## $ short_description_Chest.of.6.drawers...........80x123.cm <dbl> …
## $ short_description_Chest.of.6.drawers...........80x145.cm <dbl> …
## $ short_description_Chest.of.6.drawers...........80x99.cm <dbl> …
## $ short_description_Chest.of.6.drawers...........82x126.cm <dbl> …
## $ short_description_Chest.of.7.drawers...........80x99.cm <dbl> …
## $ short_description_Chest.of.8.drawers...........120x99.cm <dbl> …
## $ short_description_Chest.of.8.drawers...........122x96.cm <dbl> …
## $ short_description_Chest.of.8.drawers...........160x96.cm <dbl> …
## $ short_description_Chest.of.8.drawers...........160x99.cm <dbl> …
## $ short_description_Chest.of.9.drawers...........118x92.cm <dbl> …
## $ short_description_Chest.of.9.drawers...........160x76.cm <dbl> …
## $ short_description_Chest.of.9.drawers...........160x99.cm <dbl> …
## $ short_description_Chest.of.drawers...........40x54.cm <dbl> …
## $ short_description_Children.s.armchair <dbl> …
## $ short_description_Children.s.armchair.cushion <dbl> …
## $ short_description_Children.s.armchair.frame <dbl> …
## $ short_description_Children.s.bench <dbl> …
## $ short_description_Children.s.bench...........65x35.cm <dbl> …
## $ short_description_Children.s.chair <dbl> …
## $ short_description_Children.s.desk <dbl> …
## $ short_description_Children.s.desk.chair <dbl> …
## $ short_description_Children.s.easy.chair..outdoor <dbl> …
## $ short_description_Children.s.picnic.table <dbl> …
## $ short_description_Children.s.step.stool...........40x38x33.cm <dbl> …
## $ short_description_Children.s.stool <dbl> …
## $ short_description_Children.s.stool...........24x24x28.cm <dbl> …
## $ short_description_Children.s.table <dbl> …
## $ short_description_Children.s.table.with.2.benches <dbl> …
## $ short_description_Children.s.table.with.2.chairs <dbl> …
## $ short_description_Children.s.table...........74x62.cm <dbl> …
## $ short_description_Children.s.table...........76x50.cm <dbl> …
## $ short_description_Children.s.table...........77x55.cm <dbl> …
## $ short_description_Children.s.table...........83x58.cm <dbl> …
## $ short_description_Children.s.table...........85.cm <dbl> …
## $ short_description_Children.s.tent <dbl> …
## $ short_description_Clip.on.basket <dbl> …
## $ short_description_Clothes.rail...........83x50.cm <dbl> …
## $ short_description_Coffee.table.w.reversible.table.top...........75x60x50.cm <dbl> …
## $ short_description_Coffee.table...........100x75.cm <dbl> …
## $ short_description_Coffee.table...........115x70.cm <dbl> …
## $ short_description_Coffee.table...........118x50.cm <dbl> …
## $ short_description_Coffee.table...........118x60.cm <dbl> …
## $ short_description_Coffee.table...........130x80.cm <dbl> …
## $ short_description_Coffee.table...........140x60.cm <dbl> …
## $ short_description_Coffee.table...........180x59.cm <dbl> …
## $ short_description_Coffee.table...........40.cm <dbl> …
## $ short_description_Coffee.table...........50.cm <dbl> …
## $ short_description_Coffee.table...........55.cm <dbl> …
## $ short_description_Coffee.table...........60x52.cm <dbl> …
## $ short_description_Coffee.table...........65x140x52.cm <dbl> …
## $ short_description_Coffee.table...........70x70.cm <dbl> …
## $ short_description_Coffee.table...........73x41.cm <dbl> …
## $ short_description_Coffee.table...........75.cm <dbl> …
## $ short_description_Coffee.table...........90.cm <dbl> …
## $ short_description_Coffee.table...........90x46.cm <dbl> …
## $ short_description_Coffee.table...........90x55.cm <dbl> …
## $ short_description_Coffee.table...........90x90.cm <dbl> …
## $ short_description_Coffee.table...........93x93.cm <dbl> …
## $ short_description_Coffee.table...........95x95.cm <dbl> …
## $ short_description_Coffee.table..outdoor <dbl> …
## $ short_description_Coffee.table..outdoor...........68.cm <dbl> …
## $ short_description_Coffee.table..outdoor...........92x62.cm <dbl> …
## $ short_description_Conference.chair <dbl> …
## $ short_description_Conference.chair.with.armrests <dbl> …
## $ short_description_Conference.chair.with.castors <dbl> …
## $ short_description_Conference.table...........140.cm <dbl> …
## $ short_description_Conference.table...........140x140.cm <dbl> …
## $ short_description_Conference.table...........280x140.cm <dbl> …
## $ short_description_Connecting.fitting <dbl> …
## $ short_description_Connection.fittings <dbl> …
## $ short_description_Console.table...........100x35x63.cm <dbl> …
## $ short_description_Console.table...........133x37.cm <dbl> …
## $ short_description_Console.table...........92x38x71.cm <dbl> …
## $ short_description_Corner.desk.left.sit.stand...........160x110.cm <dbl> …
## $ short_description_Corner.desk.left...........160x110.cm <dbl> …
## $ short_description_Corner.desk.right.sit.stand...........160x110.cm <dbl> …
## $ short_description_Corner.desk.right...........160x110.cm <dbl> …
## $ short_description_Corner.desk...........120x73.cm <dbl> …
## $ short_description_Corner.fittings <dbl> …
## $ short_description_Corner.section <dbl> …
## $ short_description_Corner.section.cover <dbl> …
## $ short_description_Corner.section..outdoor <dbl> …
## $ short_description_Corner.sofa.bed <dbl> …
## $ short_description_Corner.sofa.bed.with.storage <dbl> …
## $ short_description_Corner.sofa.bed..4.seat <dbl> …
## $ short_description_Corner.sofa.bed..5.seat <dbl> …
## $ short_description_Corner.sofa.bed..6.seat <dbl> …
## $ short_description_Corner.sofa..3.seat <dbl> …
## $ short_description_Corner.sofa..4.seat <dbl> …
## $ short_description_Corner.sofa..5.seat <dbl> …
## $ short_description_Corner.sofa..6.seat <dbl> …
## $ short_description_Corner.table.top...........120x120.cm <dbl> …
## $ short_description_Corner.wardrobe...........111.111x236.cm <dbl> …
## $ short_description_Corner.wardrobe...........111.88x236.cm <dbl> …
## $ short_description_Corner.wardrobe...........113.271.113x236.cm <dbl> …
## $ short_description_Corner.wardrobe...........210.160x236.cm <dbl> …
## $ short_description_Corner.wardrobe...........310.310x236.cm <dbl> …
## $ short_description_Corner.workstation...........100x142.cm <dbl> …
## $ short_description_Cot.with.drawers...........60x120.cm <dbl> …
## $ short_description_Cot...........60x120.cm <dbl> …
## $ short_description_Cover <dbl> …
## $ short_description_Cover.3.seat.sofa <dbl> …
## $ short_description_Cover.chaise.longue.section <dbl> …
## $ short_description_Cover.for.1.seat.module <dbl> …
## $ short_description_Cover.for.1.seat.section <dbl> …
## $ short_description_Cover.for.2.seat.section <dbl> …
## $ short_description_Cover.for.2.seat.sofa <dbl> …
## $ short_description_Cover.for.2.seat.sofa.bed <dbl> …
## $ short_description_Cover.for.2.seat.sofa.bed.section <dbl> …
## $ short_description_Cover.for.3.seat.section <dbl> …
## $ short_description_Cover.for.3.seat.sofa <dbl> …
## $ short_description_Cover.for.3.seat.sofa.bed <dbl> …
## $ short_description_Cover.for.4.seat.sofa <dbl> …
## $ short_description_Cover.for.armchair <dbl> …
## $ short_description_Cover.for.armrest <dbl> …
## $ short_description_Cover.for.armrest.with.cushion <dbl> …
## $ short_description_Cover.for.babycare.mat...........48x74.cm <dbl> …
## $ short_description_Cover.for.back.cushion <dbl> …
## $ short_description_Cover.for.backrest...........80x80.cm <dbl> …
## $ short_description_Cover.for.backrest.cushion <dbl> …
## $ short_description_Cover.for.bar.stool.with.backrest <dbl> …
## $ short_description_Cover.for.barbecue...........72x52.cm <dbl> …
## $ short_description_Cover.for.bench <dbl> …
## $ short_description_Cover.for.chair.cushion...........44x44.cm <dbl> …
## $ short_description_Cover.for.chair.cushion...........50x50.cm <dbl> …
## $ short_description_Cover.for.chair.with.armrests <dbl> …
## $ short_description_Cover.for.chaise.longue <dbl> …
## $ short_description_Cover.for.chaise.longue.section <dbl> …
## $ short_description_Cover.for.corner.module <dbl> …
## $ short_description_Cover.for.corner.section <dbl> …
## $ short_description_Cover.for.corner.sofa <dbl> …
## $ short_description_Cover.for.corner.sofa.bed <dbl> …
## $ short_description_Cover.for.corner.sofa.bed..4.seat <dbl> …
## $ short_description_Cover.for.corner.sofa.bed..5.seat <dbl> …
## $ short_description_Cover.for.corner.sofa..3.seat <dbl> …
## $ short_description_Cover.for.corner.sofa..4.seat <dbl> …
## $ short_description_Cover.for.corner.sofa..5.seat <dbl> …
## $ short_description_Cover.for.footstool.with.storage <dbl> …
## $ short_description_Cover.for.furniture.set...........100x70.cm <dbl> …
## $ short_description_Cover.for.headrest <dbl> …
## $ short_description_Cover.for.seat.cushion...........62x62.cm <dbl> …
## $ short_description_Cover.for.seat.cushion..3.seat.sofa <dbl> …
## $ short_description_Cover.for.seat.cushion..armchair <dbl> …
## $ short_description_Cover.for.seat.back.cushion...........116x45.cm <dbl> …
## $ short_description_Cover.for.sofa.bed.module <dbl> …
## $ short_description_Cover.for.u.shaped.sofa..6.seat <dbl> …
## $ short_description_Cover.sofa.bed...........120.cm <dbl> …
## $ short_description_Cover.sofa.bed...........90.cm <dbl> …
## $ short_description_Cover.three.seat.sofa <dbl> …
## $ short_description_Cover.two.seat.sofa <dbl> …
## $ short_description_Cover...........55x83.cm <dbl> …
## $ short_description_Cover...........60x27x140.cm <dbl> …
## $ short_description_Cover...........60x27x74.cm <dbl> …
## $ short_description_Cover...........81x172.cm <dbl> …
## $ short_description_Cradle.with.foam.mattress...........66x84.cm <dbl> …
## $ short_description_Cross.brace...........100.cm <dbl> …
## $ short_description_Cup.handle...........89.mm <dbl> …
## $ short_description_Day.bed.frame.with.2.drawers...........80x200.cm <dbl> …
## $ short_description_Day.bed.frame.with.3.drawers...........80x200.cm <dbl> …
## $ short_description_Day.bed.frame...........80x200.cm <dbl> …
## $ short_description_Day.bed.w.2.drawers.2.mattresses...........80x200.cm <dbl> …
## $ short_description_Day.bed.w.3.drawers.2.mattresses...........80x200.cm <dbl> …
## $ short_description_Day.bed.with.2.mattresses...........80x200.cm <dbl> …
## $ short_description_Day.bed...........80x200.cm <dbl> …
## $ short_description_Desk.combination...........147x147x159.cm <dbl> …
## $ short_description_Desk.combination...........280x120.cm <dbl> …
## $ short_description_Desk.combination...........320x220.cm <dbl> …
## $ short_description_Desk.combination...........77x147x159.cm <dbl> …
## $ short_description_Desk.sit.stand.with.screen...........160x160.120.cm <dbl> …
## $ short_description_Desk.sit.stand.with.screen...........160x160.55.cm <dbl> …
## $ short_description_Desk.sit.stand...........120x70.cm <dbl> …
## $ short_description_Desk.sit.stand...........160x80.cm <dbl> …
## $ short_description_Desk.space.with.2.drawers...........81x35.cm <dbl> …
## $ short_description_Desk.top <dbl> …
## $ short_description_Desk.top...........95x45.cm <dbl> …
## $ short_description_Desk.with.2.drawers...........120x47.cm <dbl> …
## $ short_description_Desk.with.add.on.unit...........128x58.cm <dbl> …
## $ short_description_Desk.with.add.on.unit...........96x58.cm <dbl> …
## $ short_description_Desk.with.pull.out.panel...........151x65.cm <dbl> …
## $ short_description_Desk.with.screen...........160x160.120.cm <dbl> …
## $ short_description_Desk.with.screen...........160x160.55.cm <dbl> …
## $ short_description_Desk.with.screen...........320x160.120.cm <dbl> …
## $ short_description_Desk.with.screen...........320x160.55.cm <dbl> …
## $ short_description_Desk.with.shelf.unit...........128x58.cm <dbl> …
## $ short_description_Desk.with.shelf.unit...........96x58.cm <dbl> …
## $ short_description_Desk...........102x49.cm <dbl> …
## $ short_description_Desk...........105x50.cm <dbl> …
## $ short_description_Desk...........120x40.cm <dbl> …
## $ short_description_Desk...........120x70.cm <dbl> …
## $ short_description_Desk...........131x60.cm <dbl> …
## $ short_description_Desk...........140x60.cm <dbl> …
## $ short_description_Desk...........140x65.cm <dbl> …
## $ short_description_Desk...........155x65.cm <dbl> …
## $ short_description_Desk...........160x80.cm <dbl> …
## $ short_description_Desk...........185x74x146.cm <dbl> …
## $ short_description_Desk...........73x50.cm <dbl> …
## $ short_description_Desk...........90x52.cm <dbl> …
## $ short_description_Desk...........90x54.cm <dbl> …
## $ short_description_Desk...........96x58.cm <dbl> …
## $ short_description_Dining.table...........155x75.cm <dbl> …
## $ short_description_Display.shelf...........36x32.cm <dbl> …
## $ short_description_Display.shelf...........76x32.cm <dbl> …
## $ short_description_Divan.bed...........140x200.cm <dbl> …
## $ short_description_Divan.bed...........160x200.cm <dbl> …
## $ short_description_Divan.bed...........180x200.cm <dbl> …
## $ short_description_Door...........40x97.cm <dbl> …
## $ short_description_Door...........60x64.cm <dbl> …
## $ short_description_Door.drawer.front...........60x38.cm <dbl> …
## $ short_description_Drawer.frame...........60x15x40.cm <dbl> …
## $ short_description_Drawer.frame...........60x25x40.cm <dbl> …
## $ short_description_Drawer.front...........60x26.cm <dbl> …
## $ short_description_Drawer.insert.with.6.compartments...........44x37.cm <dbl> …
## $ short_description_Drawer.runner..push.open <dbl> …
## $ short_description_Drawer.runner..soft.closing <dbl> …
## $ short_description_Drawer.unit <dbl> …
## $ short_description_Drawer.unit.on.castors...........28x69.cm <dbl> …
## $ short_description_Drawer.unit.on.castors...........42x61.cm <dbl> …
## $ short_description_Drawer.unit.on.castors...........45x55.cm <dbl> …
## $ short_description_Drawer.unit.on.castors...........67x66.cm <dbl> …
## $ short_description_Drawer.unit.w.2.drawers.on.castors...........41x57.cm <dbl> …
## $ short_description_Drawer.unit...........33x70.cm <dbl> …
## $ short_description_Drawer...........39x30x14.cm <dbl> …
## $ short_description_Dressing.table.with.mirror...........100x50.cm <dbl> …
## $ short_description_Dressing.table...........120x41.cm <dbl> …
## $ short_description_Dressing.table...........70x42.cm <dbl> …
## $ short_description_Dressing.table...........76x47.cm <dbl> …
## $ short_description_Drill.template <dbl> …
## $ short_description_Drop.leaf.table...........65.123x78.cm <dbl> …
## $ short_description_Drop.leaf.table...........74.106.138x80.cm <dbl> …
## $ short_description_Drop.leaf.table..outdoor...........140.200.260x78.cm <dbl> …
## $ short_description_Drop.file <dbl> …
## $ short_description_Drop.handle...........18.mm <dbl> …
## $ short_description_Drop.handle...........49.mm <dbl> …
## $ short_description_Drying.rack...........60.cm <dbl> …
## $ short_description_Easy.chair <dbl> …
## $ short_description_Easy.chair..in.outdoor...........83x94x90.cm <dbl> …
## $ short_description_Easy.chair..outdoor <dbl> …
## $ short_description_Ext.bed.frame.with.slatted.bed.base...........80x200.cm <dbl> …
## $ short_description_Extendable.table...........120.180x75.cm <dbl> …
## $ short_description_Extendable.table...........120.180x80.cm <dbl> …
## $ short_description_Extendable.table...........130.190x80.cm <dbl> …
## $ short_description_Extendable.table...........152.223x95.cm <dbl> …
## $ short_description_Extendable.table...........155.215x87.cm <dbl> …
## $ short_description_Extendable.table...........180.240x90.cm <dbl> …
## $ short_description_Extendable.table...........210.289x105.cm <dbl> …
## $ short_description_Extendable.table...........80.120x70.cm <dbl> …
## $ short_description_Extra.shelf...........36x26.cm <dbl> …
## $ short_description_Extra.shelf...........76x26.cm <dbl> …
## $ short_description_File.cabinet...........41x104.cm <dbl> …
## $ short_description_Fitting.for.headboard <dbl> …
## $ short_description_Foam.mattress...........140x200.cm <dbl> …
## $ short_description_Folding.chair <dbl> …
## $ short_description_Foot.rest <dbl> …
## $ short_description_Foot..adjustable <dbl> …
## $ short_description_Footstool <dbl> …
## $ short_description_Footstool.cover <dbl> …
## $ short_description_Footstool.cushion <dbl> …
## $ short_description_Footstool.with.storage <dbl> …
## $ short_description_Frame.for.half.round.table.top...........140x70.cm <dbl> …
## $ short_description_Frame.for.table.top...........140x140.cm <dbl> …
## $ short_description_Frame.with.clothes.rail...........50x51x104.cm <dbl> …
## $ short_description_Frame.with.mesh.baskets...........25x51x70.cm <dbl> …
## $ short_description_Frame.with.mesh.baskets...........50x51x104.cm <dbl> …
## $ short_description_Frame.with.mesh.baskets.castors...........25x51x73.cm <dbl> …
## $ short_description_Frame.with.mesh.baskets.castors...........50x51x73.cm <dbl> …
## $ short_description_Frame.with.wire.baskets...........25x51x70.cm <dbl> …
## $ short_description_Frame.with.wire.baskets...........50x51x104.cm <dbl> …
## $ short_description_Frame.with.wire.baskets...........50x51x70.cm <dbl> …
## $ short_description_Frame.with.wire.baskets.castors...........25x51x73.cm <dbl> …
## $ short_description_Frame...........120x40x38.cm <dbl> …
## $ short_description_Frame...........25x51x70.cm <dbl> …
## $ short_description_Frame...........44x91.cm <dbl> …
## $ short_description_Frame...........46x30x145.cm <dbl> …
## $ short_description_Frame...........46x30x94.cm <dbl> …
## $ short_description_Frame...........50x51x70.cm <dbl> …
## $ short_description_Frame...........60x20x38.cm <dbl> …
## $ short_description_Frame...........60x20x64.cm <dbl> …
## $ short_description_Frame...........60x40x128.cm <dbl> …
## $ short_description_Frame...........60x40x192.cm <dbl> …
## $ short_description_Frame...........60x40x38.cm <dbl> …
## $ short_description_Frame...........60x40x64.cm <dbl> …
## $ short_description_Frame...........94x44x91.cm <dbl> …
## $ short_description_Frame...........94x52.cm <dbl> …
## $ short_description_Frame...........99x44x56.cm <dbl> …
## $ short_description_Frame...........99x44x94.cm <dbl> …
## $ short_description_Frame.mesh.baskets.clothes.rails...........142.178x51x173.cm <dbl> …
## $ short_description_Frame.mesh.baskets.clothes.rails...........148x51x207.cm <dbl> …
## $ short_description_Frame.mesh.baskets.shelving.units...........99x51x173.cm <dbl> …
## $ short_description_Frame.mesh.baskts.clths.rl.shlv.uts...........173x51x173.cm <dbl> …
## $ short_description_Frame.mesh.baskts.clths.rl.shlv.uts...........198x51x173.cm <dbl> …
## $ short_description_Frame.w.bskts.clths.rl.shlv.uts...........198x51x173.cm <dbl> …
## $ short_description_Frame.wire.baskets.clothes.rails...........142.178x51x139.cm <dbl> …
## $ short_description_Frame.wire.baskets.clothes.rails...........142.178x51x173.cm <dbl> …
## $ short_description_Frame.wire.baskets.clothes.rails...........99x51x173.cm <dbl> …
## $ short_description_Frame.wire.baskets.top.shelf...........25x51x70.cm <dbl> …
## $ short_description_Frame.wire.baskets.top.shelf...........50x51x70.cm <dbl> …
## $ short_description_Frame.wire.baskets.top.shelves...........148x51x104.cm <dbl> …
## $ short_description_Frames.clothes.rails.shelving.units...........148x51x173.cm <dbl> …
## $ short_description_Gateleg.table.for.wall..outdoor...........80x56.cm <dbl> …
## $ short_description_Gateleg.table...........26.89.152x80.cm <dbl> …
## $ short_description_Gateleg.table...........67.134.201x78.cm <dbl> …
## $ short_description_Gateleg.table..outdoor...........20.77.133x62.cm <dbl> …
## $ short_description_Glass.door.cabinet.with.3.drawers...........90x197.cm <dbl> …
## $ short_description_Glass.door.cabinet.with.plinth...........121x37x134.cm <dbl> …
## $ short_description_Glass.door.cabinet...........103x48x141.cm <dbl> …
## $ short_description_Glass.door.cabinet...........118x203.cm <dbl> …
## $ short_description_Glass.door.cabinet...........121x35x123.cm <dbl> …
## $ short_description_Glass.door.cabinet...........43x163.cm <dbl> …
## $ short_description_Glass.door.cabinet...........60x40x186.cm <dbl> …
## $ short_description_Glass.door.cabinet...........73x175.cm <dbl> …
## $ short_description_Glass.door.cabinet...........80x190.cm <dbl> …
## $ short_description_Glass.door.cabinet...........81x113.cm <dbl> …
## $ short_description_Glass.door.cabinet...........81x35x123.cm <dbl> …
## $ short_description_Glass.door.cabinet...........96x214.cm <dbl> …
## $ short_description_Glass.door...........40x192.cm <dbl> …
## $ short_description_Glass.door...........60x38.cm <dbl> …
## $ short_description_Glass.door...........60x64.cm <dbl> …
## $ short_description_Glass.shelf...........56x16.cm <dbl> …
## $ short_description_Glass.shelf...........56x36.cm <dbl> …
## $ short_description_Glass.top...........160x48.cm <dbl> …
## $ short_description_Glass.top...........54x38.cm <dbl> …
## $ short_description_Glass.top...........55x55.cm <dbl> …
## $ short_description_Guard.rail <dbl> …
## $ short_description_Guest.bed...........80x190.cm <dbl> …
## $ short_description_Hammock.stand..outdoor <dbl> …
## $ short_description_Hammock.with.stand <dbl> …
## $ short_description_Handle...........100.mm <dbl> …
## $ short_description_Handle...........106.mm <dbl> …
## $ short_description_Handle...........112.mm <dbl> …
## $ short_description_Handle...........120.mm <dbl> …
## $ short_description_Handle...........140.mm <dbl> …
## $ short_description_Handle...........143.mm <dbl> …
## $ short_description_Handle...........170.mm <dbl> …
## $ short_description_Handle...........175.mm <dbl> …
## $ short_description_Handle...........1880.mm <dbl> …
## $ short_description_Handle...........213.mm <dbl> …
## $ short_description_Handle...........2220.mm <dbl> …
## $ short_description_Handle...........300.mm <dbl> …
## $ short_description_Handle...........320.mm <dbl> …
## $ short_description_Handle...........335.mm <dbl> …
## $ short_description_Handle...........40.mm <dbl> …
## $ short_description_Handle...........405.mm <dbl> …
## $ short_description_Handle...........520.mm <dbl> …
## $ short_description_Handle...........56.mm <dbl> …
## $ short_description_Handle...........597.mm <dbl> …
## $ short_description_Handle...........720.mm <dbl> …
## $ short_description_Headboard <dbl> …
## $ short_description_Headboard.with.storage.compartment...........140.cm <dbl> …
## $ short_description_Headboard.with.storage.compartment...........90.cm <dbl> …
## $ short_description_Headboard...........140.160.cm <dbl> …
## $ short_description_Headboard...........160.cm <dbl> …
## $ short_description_Headrest <dbl> …
## $ short_description_Headset.tablet.stand <dbl> …
## $ short_description_Height.extension.unit...........40x28x35.cm <dbl> …
## $ short_description_Height.extension.unit...........80x28x35.cm <dbl> …
## $ short_description_High.back.armchair <dbl> …
## $ short_description_High.cabinet.with.drawer.and.doors...........45x172.cm <dbl> …
## $ short_description_High.cabinet.with.glass.door...........42x38x131.cm <dbl> …
## $ short_description_High.cabinet.with.smart.lock...........45x172.cm <dbl> …
## $ short_description_Highchair.tray <dbl> …
## $ short_description_Highchair.with.safety.belt <dbl> …
## $ short_description_Highchair.with.tray <dbl> …
## $ short_description_Holder.for.mobile.phone.tablet <dbl> …
## $ short_description_Hook.for.post...........7x5x3.cm.2.pack <dbl> …
## $ short_description_Inner.cushion.for.back.cushion...........62x44.cm <dbl> …
## $ short_description_Inner.cushion.for.chair.cushion...........35.cm <dbl> …
## $ short_description_Inner.cushion.for.seat.cushion...........62x62.cm <dbl> …
## $ short_description_Inner.cushion.for.seat.back.cushion...........71x45.42x45.cm <dbl> …
## $ short_description_Insert.with.2.drawers...........33x33.cm <dbl> …
## $ short_description_Insert.with.door...........33x33.cm <dbl> …
## $ short_description_Insert.with.mirror.door...........33x33.cm <dbl> …
## $ short_description_Junior.chair <dbl> …
## $ short_description_Junior.highchair <dbl> …
## $ short_description_Junior.highchair.with.tray <dbl> …
## $ short_description_Kitchen.island.with.rack...........126x79x193.cm <dbl> …
## $ short_description_Kitchen.island...........126x77.cm <dbl> …
## $ short_description_Kitchen.island...........126x79x90.cm <dbl> …
## $ short_description_Kitchen.island...........79x63x90.cm <dbl> …
## $ short_description_Kitchen.trolley...........100x43.cm <dbl> …
## $ short_description_Kitchen.trolley...........58x50.cm <dbl> …
## $ short_description_Knob...........13.mm <dbl> …
## $ short_description_Knob...........14.mm <dbl> …
## $ short_description_Knob...........15.mm <dbl> …
## $ short_description_Knob...........17.mm <dbl> …
## $ short_description_Knob...........20.mm <dbl> …
## $ short_description_Knob...........21.mm <dbl> …
## $ short_description_Knob...........22.mm <dbl> …
## $ short_description_Knob...........23.mm <dbl> …
## $ short_description_Knob...........27.mm <dbl> …
## $ short_description_Knob...........32.mm <dbl> …
## $ short_description_Knob...........35.mm <dbl> …
## $ short_description_Laptop.support <dbl> …
## $ short_description_Laptop.support...........42x31.cm <dbl> …
## $ short_description_Laptop.table...........100x36.cm <dbl> …
## $ short_description_Leather.handle...........153.mm <dbl> …
## $ short_description_Leather.handle...........65.mm <dbl> …
## $ short_description_Left.hand.corner.table.top...........160x110.cm <dbl> …
## $ short_description_Leg <dbl> …
## $ short_description_Leg.with.castor...........70.cm <dbl> …
## $ short_description_Leg...........10.cm <dbl> …
## $ short_description_Leg...........15.cm <dbl> …
## $ short_description_Leg...........70.cm <dbl> …
## $ short_description_Leg..adjustable <dbl> …
## $ short_description_Legs.for.3.seat.sofa <dbl> …
## $ short_description_Legs.for.armchair.sofas <dbl> …
## $ short_description_Lid...........20x28.cm <dbl> …
## $ short_description_Loft.bed.combo.w.2.shlvs.3.shlvs...........207x99x182.cm <dbl> …
## $ short_description_Loft.bed.combo.w.3.drawers.2.doors...........207x99x182.cm <dbl> …
## $ short_description_Loft.bed.frame.with.desk.top...........90x200.cm <dbl> …
## $ short_description_Loft.bed.frame...........90x200.cm <dbl> …
## $ short_description_Lounger..outdoor <dbl> …
## $ short_description_Mattress...........140x188.cm <dbl> …
## $ short_description_Media.storage.combination...........220x42x251.cm <dbl> …
## $ short_description_Media.storage.combination...........300x42x131.cm <dbl> …
## $ short_description_Media.storage.combination...........300x42x221.cm <dbl> …
## $ short_description_Media.storage.combination...........320x42x241.cm <dbl> …
## $ short_description_Mesh.basket...........38x60x14.cm <dbl> …
## $ short_description_Mirror.door...........40x120.cm <dbl> …
## $ short_description_Modular.chest.of.2.drawers...........40x45.cm <dbl> …
## $ short_description_Modular.chest.of.2.drawers...........80x45.cm <dbl> …
## $ short_description_Modular.chest.of.3.drawers...........40x68.cm <dbl> …
## $ short_description_Modular.chest.of.3.drawers...........80x68.cm <dbl> …
## $ short_description_Modular.chest.of.drawers...........40x45.cm <dbl> …
## $ short_description_Modular.corner.sofa.3.seat..outdoor <dbl> …
## $ short_description_Modular.corner.sofa.3.seat..outdoor...........143.223x80x84.cm <dbl> …
## $ short_description_Modular.corner.sofa.3.seat.sofa.bed <dbl> …
## $ short_description_Modular.corner.sofa.4.seat..outdoor <dbl> …
## $ short_description_Modular.corner.sofa..4.seat <dbl> …
## $ short_description_Mounting.rail...........66.cm <dbl> …
## $ short_description_Nest.of.tables..set.of.2 <dbl> …
## $ short_description_Nest.of.tables..set.of.2...........90x50.cm <dbl> …
## $ short_description_Nest.of.tables..set.of.3 <dbl> …
## $ short_description_Nursing.pillow...........60x50x18.cm <dbl> …
## $ short_description_Office.chair <dbl> …
## $ short_description_Office.chair.with.armrests <dbl> …
## $ short_description_One.seat.section..outdoor <dbl> …
## $ short_description_Open.end.section.w.storage <dbl> …
## $ short_description_Open.shelving.unit...........160x40x63.cm <dbl> …
## $ short_description_Open.wardrobe.with.sliding.door...........120x123.cm <dbl> …
## $ short_description_Open.wardrobe.with.sliding.door...........120x186.cm <dbl> …
## $ short_description_Open.wardrobe...........120x173.cm <dbl> …
## $ short_description_Open.wardrobe...........79x44x187.cm <dbl> …
## $ short_description_Open.wardrobe...........99x37x130.cm <dbl> …
## $ short_description_Padded.seat.cover.for.highchair <dbl> …
## $ short_description_Padded.seat.cover.for.junior.chair <dbl> …
## $ short_description_Pair.of.armrests <dbl> …
## $ short_description_Pair.of.legs...........29.cm <dbl> …
## $ short_description_Panel.glass.door...........44x198.cm <dbl> …
## $ short_description_Pegboard.combination...........36x56.cm <dbl> …
## $ short_description_Platform..armchair <dbl> …
## $ short_description_Play.tunnel <dbl> …
## $ short_description_Plinth...........121x37x12.cm <dbl> …
## $ short_description_Plinth...........81x37x12.cm <dbl> …
## $ short_description_Pocket.sprung.mattress...........140x200.cm <dbl> …
## $ short_description_Post...........110.cm <dbl> …
## $ short_description_Post...........171.cm.2.pack <dbl> …
## $ short_description_Post...........190.cm <dbl> …
## $ short_description_Pouffe <dbl> …
## $ short_description_Pouffe...........45.cm <dbl> …
## $ short_description_Pouffe...........50x50.cm <dbl> …
## $ short_description_Pouffe...........56.cm <dbl> …
## $ short_description_Pouffe...........71.cm <dbl> …
## $ short_description_Pouffe.mattress..foldable <dbl> …
## $ short_description_Pull.out.rail.for.baskets <dbl> …
## $ short_description_Reception.desk.sit.stand...........160x80.55.cm <dbl> …
## $ short_description_Reception.desk...........160x80.55.cm <dbl> …
## $ short_description_Recliner <dbl> …
## $ short_description_Reclining.chair..outdoor <dbl> …
## $ short_description_Reversible.bed...........90x200.cm <dbl> …
## $ short_description_Right.hand.corner.table.top...........160x110.cm <dbl> …
## $ short_description_Rocking.chair <dbl> …
## $ short_description_Rod.for.brackets...........60.cm <dbl> …
## $ short_description_Room.divider.for.corner <dbl> …
## $ short_description_Screen.for.desk...........120.cm <dbl> …
## $ short_description_Seat.and.back.part..outdoor <dbl> …
## $ short_description_Seat.cushion..outdoor...........100x98.cm <dbl> …
## $ short_description_Seat.cushion..outdoor...........62x62.cm <dbl> …
## $ short_description_Seat.module <dbl> …
## $ short_description_Seat.module.with.backrest <dbl> …
## $ short_description_Seat.module.with.storage <dbl> …
## $ short_description_Seat.shell <dbl> …
## $ short_description_Seat.shell.for.highchair <dbl> …
## $ short_description_Seat.shell.with.armrests <dbl> …
## $ short_description_Seat.back.cushion..outdoor...........116x45.cm <dbl> …
## $ short_description_Seat.back.cushion..outdoor...........116x47.cm <dbl> …
## $ short_description_Seat.back.cushion..outdoor...........92x50.cm <dbl> …
## $ short_description_Shelf <dbl> …
## $ short_description_Shelf.insert <dbl> …
## $ short_description_Shelf.unit...........29x88.cm <dbl> …
## $ short_description_Shelf.unit...........80x120.cm <dbl> …
## $ short_description_Shelf...........30.cm <dbl> …
## $ short_description_Shelf...........42x30.cm <dbl> …
## $ short_description_Shelf...........42x50.cm <dbl> …
## $ short_description_Shelf...........56x16.cm <dbl> …
## $ short_description_Shelf...........56x36.cm <dbl> …
## $ short_description_Shelf...........60x38.cm <dbl> …
## $ short_description_Shelf...........61x15.cm <dbl> …
## $ short_description_Shelf...........76x50.cm <dbl> …
## $ short_description_Shelf...........77x28.cm.2.pack <dbl> …
## $ short_description_Shelf...........81x15.cm <dbl> …
## $ short_description_Shelf...........83x30.cm <dbl> …
## $ short_description_Shelf...........83x50.cm <dbl> …
## $ short_description_Shelf...........84x54.cm <dbl> …
## $ short_description_Shelv.unit.w.table.cabinets.drawers...........175x30.104x179.cm <dbl> …
## $ short_description_Shelving.unit.in.outdoor...........180x27x74.140.cm <dbl> …
## $ short_description_Shelving.unit.in.outdoor...........80x35x162.cm <dbl> …
## $ short_description_Shelving.unit.in.outdoor...........80x81.cm <dbl> …
## $ short_description_Shelving.unit.w.cabinets.drawers...........134x30x179.cm <dbl> …
## $ short_description_Shelving.unit.w.cabinets.drawers...........219x30x226.cm <dbl> …
## $ short_description_Shelving.unit.w.cabinets.drawers...........259x30x179.cm <dbl> …
## $ short_description_Shelving.unit.w.cabinets.drawers...........89x30x124.cm <dbl> …
## $ short_description_Shelving.unit.w.shelves.drwrs.rail...........174x50x124.cm <dbl> …
## $ short_description_Shelving.unit.w.shelves.rails.cover...........89x50x179.cm <dbl> …
## $ short_description_Shelving.unit.w.tbl.cabinets.shlvs...........259x30.104x179.cm <dbl> …
## $ short_description_Shelving.unit.with.10.inserts...........182x182.cm <dbl> …
## $ short_description_Shelving.unit.with.2.cabinets...........171x37x161.cm <dbl> …
## $ short_description_Shelving.unit.with.2.inserts...........42x147.cm <dbl> …
## $ short_description_Shelving.unit.with.4.inserts...........147x112.cm <dbl> …
## $ short_description_Shelving.unit.with.4.inserts...........147x147.cm <dbl> …
## $ short_description_Shelving.unit.with.4.inserts...........77x147.cm <dbl> …
## $ short_description_Shelving.unit.with.6.inserts...........112x147.cm <dbl> …
## $ short_description_Shelving.unit.with.8.inserts...........147x147.cm <dbl> …
## $ short_description_Shelving.unit.with.cabinet...........162x41x162.cm <dbl> …
## $ short_description_Shelving.unit.with.cabinet...........80x37x161.cm <dbl> …
## $ short_description_Shelving.unit.with.cabinet...........85x40x190.cm <dbl> …
## $ short_description_Shelving.unit.with.cabinets...........161x40x133.cm <dbl> …
## $ short_description_Shelving.unit.with.cabinets...........170x40x110.cm <dbl> …
## $ short_description_Shelving.unit.with.cabinets...........170x40x190.cm <dbl> …
## $ short_description_Shelving.unit.with.cabinets...........85x40x110.cm <dbl> …
## $ short_description_Shelving.unit.with.clothes.rail...........174x50x179.cm <dbl> …
## $ short_description_Shelving.unit.with.clothes.rail...........174x50x226.cm <dbl> …
## $ short_description_Shelving.unit.with.clothes.rail...........89x50x226.cm <dbl> …
## $ short_description_Shelving.unit.with.clothes.rail...........99x51x173.cm <dbl> …
## $ short_description_Shelving.unit.with.cover...........60x27x140.cm <dbl> …
## $ short_description_Shelving.unit.with.cover...........60x27x74.cm <dbl> …
## $ short_description_Shelving.unit.with.cover...........89x50x179.cm <dbl> …
## $ short_description_Shelving.unit.with.doors...........77x147.cm <dbl> …
## $ short_description_Shelving.unit.with.doors...........77x77.cm <dbl> …
## $ short_description_Shelving.unit.with.laptop.table...........200x36x175.cm <dbl> …
## $ short_description_Shelving.unit.with.laptop.table...........202x36x175.cm <dbl> …
## $ short_description_Shelving.unit.with.shelves.rails...........174x50x179.cm <dbl> …
## $ short_description_Shelving.unit.with.shelves.rails...........259x50x179.cm <dbl> …
## $ short_description_Shelving.unit...........100x136.cm <dbl> …
## $ short_description_Shelving.unit...........100x175.cm <dbl> …
## $ short_description_Shelving.unit...........100x93.cm <dbl> …
## $ short_description_Shelving.unit...........100x95.cm <dbl> …
## $ short_description_Shelving.unit...........112x147.cm <dbl> …
## $ short_description_Shelving.unit...........121x134.cm <dbl> …
## $ short_description_Shelving.unit...........147x147.cm <dbl> …
## $ short_description_Shelving.unit...........170x158.cm <dbl> …
## $ short_description_Shelving.unit...........182x182.cm <dbl> …
## $ short_description_Shelving.unit...........182x51x160.cm <dbl> …
## $ short_description_Shelving.unit...........202.cm <dbl> …
## $ short_description_Shelving.unit...........234x55x110.cm <dbl> …
## $ short_description_Shelving.unit...........234x55x190.cm <dbl> …
## $ short_description_Shelving.unit...........254x40x110.cm <dbl> …
## $ short_description_Shelving.unit...........254x40x190.cm <dbl> …
## $ short_description_Shelving.unit...........25x51x70.cm <dbl> …
## $ short_description_Shelving.unit...........42x147.cm <dbl> …
## $ short_description_Shelving.unit...........45x181.cm <dbl> …
## $ short_description_Shelving.unit...........46x150.cm <dbl> …
## $ short_description_Shelving.unit...........51x136.cm <dbl> …
## $ short_description_Shelving.unit...........51x175.cm <dbl> …
## $ short_description_Shelving.unit...........60x27x140.cm <dbl> …
## $ short_description_Shelving.unit...........60x27x74.cm <dbl> …
## $ short_description_Shelving.unit...........65x40x110.cm <dbl> …
## $ short_description_Shelving.unit...........65x40x190.cm <dbl> …
## $ short_description_Shelving.unit...........65x55x110.cm <dbl> …
## $ short_description_Shelving.unit...........77x147.cm <dbl> …
## $ short_description_Shelving.unit...........77x42.cm <dbl> …
## $ short_description_Shelving.unit...........77x77.cm <dbl> …
## $ short_description_Shelving.unit...........80x38x160.cm <dbl> …
## $ short_description_Shelving.unit...........81x35x123.cm <dbl> …
## $ short_description_Shelving.unit...........85x40x190.cm <dbl> …
## $ short_description_Shelving.unit...........85x55x110.cm <dbl> …
## $ short_description_Shelving.unit...........85x55x190.cm <dbl> …
## $ short_description_Shelving.unit...........89x30x124.cm <dbl> …
## $ short_description_Shelving.unit...........89x30x179.cm <dbl> …
## $ short_description_Shelving.unit...........92x36x94.cm <dbl> …
## $ short_description_Shelving.units.with.covers...........180x27x74.cm <dbl> …
## $ short_description_Side.table.on.castors...........50x50.cm <dbl> …
## $ short_description_Side.table.on.castors...........64x64.cm <dbl> …
## $ short_description_Side.table.on.castors...........69x40.cm <dbl> …
## $ short_description_Side.table.w.reversible.table.top...........40x40x60.cm <dbl> …
## $ short_description_Side.table...........38.cm <dbl> …
## $ short_description_Side.table...........45x45.cm <dbl> …
## $ short_description_Side.table...........50.cm <dbl> …
## $ short_description_Side.table...........50x35.cm <dbl> …
## $ short_description_Side.table...........50x50.cm <dbl> …
## $ short_description_Side.table...........50x68.cm <dbl> …
## $ short_description_Side.table...........54.cm <dbl> …
## $ short_description_Side.table...........55x55.cm <dbl> …
## $ short_description_Side.table...........57x40.cm <dbl> …
## $ short_description_Side.table...........60.cm <dbl> …
## $ short_description_Side.table...........77x39.cm <dbl> …
## $ short_description_Side.table..outdoor...........49x49.cm <dbl> …
## $ short_description_Side.unit...........30x124.cm <dbl> …
## $ short_description_Sideboard.basic.unit...........145x92.cm <dbl> …
## $ short_description_Sideboard...........157x88.cm <dbl> …
## $ short_description_Smart.lock <dbl> …
## $ short_description_Sofa.bed.module <dbl> …
## $ short_description_Sofa.bed.with.side.table...........120.cm <dbl> …
## $ short_description_Sofa.bed.with.side.table...........90.cm <dbl> …
## $ short_description_Sofa.bed.with.triple.cushion <dbl> …
## $ short_description_Sofa.bed...........120.cm <dbl> …
## $ short_description_Sofa.bed...........90.cm <dbl> …
## $ short_description_Soft.closing.push.open.hinge <dbl> …
## $ short_description_Stackable.bed.with.2.mattresses...........80x200.cm <dbl> …
## $ short_description_Standing.desk <dbl> …
## $ short_description_Standing.support <dbl> …
## $ short_description_Step.stool <dbl> …
## $ short_description_Stepladder..3.steps...........63.cm <dbl> …
## $ short_description_Stool <dbl> …
## $ short_description_Stool.cover <dbl> …
## $ short_description_Stool.frame <dbl> …
## $ short_description_Stool...........45.cm <dbl> …
## $ short_description_Stool..outdoor <dbl> …
## $ short_description_Stool..outdoor...........48x35x43.cm <dbl> …
## $ short_description_Stool..outdoor...........62x62.cm <dbl> …
## $ short_description_Stool.side.table..in.outdoor...........56x41x43.cm <dbl> …
## $ short_description_Stor.baskets.changing.tbl.set.of.4 <dbl> …
## $ short_description_Storage.bag.for.cushions...........116x49.cm <dbl> …
## $ short_description_Storage.bag.for.cushions...........62x62.cm <dbl> …
## $ short_description_Storage.bench <dbl> …
## $ short_description_Storage.bench.w.towel.rail.4.hooks...........64x37x173.cm <dbl> …
## $ short_description_Storage.bench...........90x50x50.cm <dbl> …
## $ short_description_Storage.box.2.seat.sofa.bed <dbl> …
## $ short_description_Storage.box.with.castors...........62x62x35.cm <dbl> …
## $ short_description_Storage.box...........20x30x10.cm <dbl> …
## $ short_description_Storage.box...........42x30x10.cm <dbl> …
## $ short_description_Storage.box...........42x30x23.cm <dbl> …
## $ short_description_Storage.box...........42x30x36.cm <dbl> …
## $ short_description_Storage.box..outdoor...........129x44x79.cm <dbl> …
## $ short_description_Storage.case...........55x51x18.cm <dbl> …
## $ short_description_Storage.case...........69x55x19.cm <dbl> …
## $ short_description_Storage.comb.w.sliding.glass.doors...........243x47x212.cm <dbl> …
## $ short_description_Storage.comb.w.sliding.glass.doors...........283x37x134.cm <dbl> …
## $ short_description_Storage.combination.w.doors.drawers...........120x42x240.cm <dbl> …
## $ short_description_Storage.combination.w.doors.drawers...........270x197.cm <dbl> …
## $ short_description_Storage.combination.w.glass.doors...........243x47x212.cm <dbl> …
## $ short_description_Storage.combination.w.glass.doors...........81x47x212.cm <dbl> …
## $ short_description_Storage.combination.w.glass.doors...........120x40x128.cm <dbl> …
## $ short_description_Storage.combination.w.glass.doors...........120x42x192.cm <dbl> …
## $ short_description_Storage.combination.w.glass.doors...........160x35x190.cm <dbl> …
## $ short_description_Storage.combination.w.glass.doors...........162x37x134.cm <dbl> …
## $ short_description_Storage.combination.w.glass.doors...........203x47x212.cm <dbl> …
## $ short_description_Storage.combination.w.glass.doors...........60x22x202.cm <dbl> …
## $ short_description_Storage.combination.w.glass.doors...........60x42x193.cm <dbl> …
## $ short_description_Storage.combination.w.sliding.doors...........160x200.cm <dbl> …
## $ short_description_Storage.combination.w.sliding.doors...........320x120.cm <dbl> …
## $ short_description_Storage.combination.w.sliding.doors...........320x200.cm <dbl> …
## $ short_description_Storage.combination.with.doors...........120x40x192.cm <dbl> …
## $ short_description_Storage.combination.with.doors...........120x42x202.cm <dbl> …
## $ short_description_Storage.combination.with.doors...........120x42x74.cm <dbl> …
## $ short_description_Storage.combination.with.doors...........135x47x192.cm <dbl> …
## $ short_description_Storage.combination.with.doors...........180x42x112.cm <dbl> …
## $ short_description_Storage.combination.with.doors...........180x42x74.cm <dbl> …
## $ short_description_Storage.combination.with.doors...........276x214.cm <dbl> …
## $ short_description_Storage.combination.with.doors...........45x47x117.cm <dbl> …
## $ short_description_Storage.combination.with.doors...........45x47x142.cm <dbl> …
## $ short_description_Storage.combination.with.doors...........45x47x167.cm <dbl> …
## $ short_description_Storage.combination.with.doors...........81x47x212.cm <dbl> …
## $ short_description_Storage.combination.with.doors...........90x47x167.cm <dbl> …
## $ short_description_Storage.combination.with.drawers...........80x160.cm <dbl> …
## $ short_description_Storage.combination...........130x117.cm <dbl> …
## $ short_description_Storage.combination...........140x142.cm <dbl> …
## $ short_description_Storage.combination...........140x82.cm <dbl> …
## $ short_description_Storage.combination...........151x36x175.cm <dbl> …
## $ short_description_Storage.combination...........160x120.cm <dbl> …
## $ short_description_Storage.combination...........162x37x134.cm <dbl> …
## $ short_description_Storage.combination...........200x36x175.cm <dbl> …
## $ short_description_Storage.combination...........200x36x93.cm <dbl> …
## $ short_description_Storage.combination...........202x36x175.cm <dbl> …
## $ short_description_Storage.combination...........25x25x50.cm <dbl> …
## $ short_description_Storage.combination...........25x75.cm <dbl> …
## $ short_description_Storage.combination...........276x214.cm <dbl> …
## $ short_description_Storage.combination...........300x36x175.cm <dbl> …
## $ short_description_Storage.combination...........35x117.cm <dbl> …
## $ short_description_Storage.combination...........35x70.cm <dbl> …
## $ short_description_Storage.combination...........44x30x91.cm <dbl> …
## $ short_description_Storage.combination...........46x30x145.cm <dbl> …
## $ short_description_Storage.combination...........46x30x94.cm <dbl> …
## $ short_description_Storage.combination...........60x92.cm <dbl> …
## $ short_description_Storage.combination...........81x47x212.cm <dbl> …
## $ short_description_Storage.combination...........94x44x52.cm <dbl> …
## $ short_description_Storage.combination...........94x44x91.cm <dbl> …
## $ short_description_Storage.combination...........95x127.cm <dbl> …
## $ short_description_Storage.combination...........95x35.cm <dbl> …
## $ short_description_Storage.combination...........99x44x56.cm <dbl> …
## $ short_description_Storage.combination...........99x44x94.cm <dbl> …
## $ short_description_Storage.stool <dbl> …
## $ short_description_Storage.stool...........45.cm <dbl> …
## $ short_description_Storage.table...........44.cm <dbl> …
## $ short_description_Storage.table...........61.cm <dbl> …
## $ short_description_Storage.table...........98x50.cm <dbl> …
## $ short_description_Storage.unit.on.castors...........41x101.cm <dbl> …
## $ short_description_Storage.unit.on.castors...........41x61.cm <dbl> …
## $ short_description_Storage.unit.on.castors...........61x101.cm <dbl> …
## $ short_description_Storage.unit.on.legs...........41x101.cm <dbl> …
## $ short_description_Storage.unit.on.legs...........41x61.cm <dbl> …
## $ short_description_Storage.unit.on.legs...........61x101.cm <dbl> …
## $ short_description_Storage.unit.with.foldable.table...........80x30.104x155.cm <dbl> …
## $ short_description_Storage.unit.with.smart.lock...........41x101.cm <dbl> …
## $ short_description_Storage.unit.with.smart.lock...........41x61.cm <dbl> …
## $ short_description_Storage.unit.with.smart.lock...........61x101.cm <dbl> …
## $ short_description_Storage.unit...........120x173.cm <dbl> …
## $ short_description_Storage.unit...........36x70.cm <dbl> …
## $ short_description_Storage.w.shelves.cabinet.trolley <dbl> …
## $ short_description_Sun.lounger <dbl> …
## $ short_description_Sun.lounger.pad...........190x60.cm <dbl> …
## $ short_description_Supporting.cushion <dbl> …
## $ short_description_Supporting.leg <dbl> …
## $ short_description_Supporting.leg...........10.cm <dbl> …
## $ short_description_Suspension.rail...........35.cm <dbl> …
## $ short_description_Suspension.rail...........60.cm <dbl> …
## $ short_description_Suspension.rail...........70.cm <dbl> …
## $ short_description_Swivel.armchair <dbl> …
## $ short_description_Swivel.chair <dbl> …
## $ short_description_Table.and.1.chair...........74.cm <dbl> …
## $ short_description_Table.and.2.chairs <dbl> …
## $ short_description_Table.and.2.chairs...........70.cm <dbl> …
## $ short_description_Table.and.2.chairs...........74x74.cm <dbl> …
## $ short_description_Table.and.2.chairs...........75.cm <dbl> …
## $ short_description_Table.and.2.chairs...........75x75.cm <dbl> …
## $ short_description_Table.and.2.chairs...........80.120.cm <dbl> …
## $ short_description_Table.and.2.chairs...........85.cm <dbl> …
## $ short_description_Table.and.2.folding.chairs...........75.cm <dbl> …
## $ short_description_Table.and.2.stools...........75.cm <dbl> …
## $ short_description_Table.and.4.chairs <dbl> …
## $ short_description_Table.and.4.chairs...........100.155.cm <dbl> …
## $ short_description_Table.and.4.chairs...........110.cm <dbl> …
## $ short_description_Table.and.4.chairs...........110.155.cm <dbl> …
## $ short_description_Table.and.4.chairs...........118x74.cm <dbl> …
## $ short_description_Table.and.4.chairs...........120.180.cm <dbl> …
## $ short_description_Table.and.4.chairs...........125.cm <dbl> …
## $ short_description_Table.and.4.chairs...........125x74.cm <dbl> …
## $ short_description_Table.and.4.chairs...........130.190x80.cm <dbl> …
## $ short_description_Table.and.4.chairs...........135.cm <dbl> …
## $ short_description_Table.and.4.chairs...........138.cm <dbl> …
## $ short_description_Table.and.4.chairs...........140x78.cm <dbl> …
## $ short_description_Table.and.4.chairs...........140x85.cm <dbl> …
## $ short_description_Table.and.4.chairs...........150.cm <dbl> …
## $ short_description_Table.and.4.chairs...........152.223x95.cm <dbl> …
## $ short_description_Table.and.4.chairs...........155.cm <dbl> …
## $ short_description_Table.and.4.chairs...........155.215.cm <dbl> …
## $ short_description_Table.and.4.chairs...........170.cm <dbl> …
## $ short_description_Table.and.4.chairs...........180x90.cm <dbl> …
## $ short_description_Table.and.4.chairs...........200x90.cm <dbl> …
## $ short_description_Table.and.4.chairs...........67.cm <dbl> …
## $ short_description_Table.and.4.stools...........125.cm <dbl> …
## $ short_description_Table.and.6.armchairs...........220x100.cm <dbl> …
## $ short_description_Table.and.6.chairs...........155.215.cm <dbl> …
## $ short_description_Table.and.6.chairs...........155.215x87.cm <dbl> …
## $ short_description_Table.and.6.chairs...........180.cm <dbl> …
## $ short_description_Table.and.6.chairs...........180.240.cm <dbl> …
## $ short_description_Table.and.6.chairs...........180x90.cm <dbl> …
## $ short_description_Table.and.6.chairs...........210.289x105.cm <dbl> …
## $ short_description_Table.and.6.chairs...........220x100.cm <dbl> …
## $ short_description_Table.and.6.chairs...........235x100.cm <dbl> …
## $ short_description_Table.and.6.chairs...........240x105.cm <dbl> …
## $ short_description_Table.f.wall.2.fold.chairs..outdoor <dbl> …
## $ short_description_Table.for.wall..outdoor...........70x44.cm <dbl> …
## $ short_description_Table.for.wall.1.fold.chr..outdoor <dbl> …
## $ short_description_Table.leg.with.storage...........58x70.cm <dbl> …
## $ short_description_Table.top...........100x60.cm <dbl> …
## $ short_description_Table.top...........120x60.cm <dbl> …
## $ short_description_Table.top...........120x70.cm <dbl> …
## $ short_description_Table.top...........140x140.cm <dbl> …
## $ short_description_Table.top...........140x60.cm <dbl> …
## $ short_description_Table.top...........148x73.cm <dbl> …
## $ short_description_Table.top...........150x75.cm <dbl> …
## $ short_description_Table.top...........150x78x1.8.cm <dbl> …
## $ short_description_Table.top...........155x75.cm <dbl> …
## $ short_description_Table.top...........160x80.cm <dbl> …
## $ short_description_Table.top...........170x78x5.cm <dbl> …
## $ short_description_Table.top...........200x60.cm <dbl> …
## $ short_description_Table.top..outdoor...........85x72.cm <dbl> …
## $ short_description_Table.with.2.chairs.and.bench...........120.180.cm <dbl> …
## $ short_description_Table...........100x60.cm <dbl> …
## $ short_description_Table...........118x74.cm <dbl> …
## $ short_description_Table...........120x60.cm <dbl> …
## $ short_description_Table...........120x75.cm <dbl> …
## $ short_description_Table...........125x74.cm <dbl> …
## $ short_description_Table...........125x75.cm <dbl> …
## $ short_description_Table...........130x70.cm <dbl> …
## $ short_description_Table...........130x70.105.cm <dbl> …
## $ short_description_Table...........135x85.cm <dbl> …
## $ short_description_Table...........140x65.cm <dbl> …
## $ short_description_Table...........140x78.cm <dbl> …
## $ short_description_Table...........140x85.cm <dbl> …
## $ short_description_Table...........148x73.cm <dbl> …
## $ short_description_Table...........150x75.cm <dbl> …
## $ short_description_Table...........150x78.cm <dbl> …
## $ short_description_Table...........155x75.cm <dbl> …
## $ short_description_Table...........170x78.cm <dbl> …
## $ short_description_Table...........180x90.cm <dbl> …
## $ short_description_Table...........180x98.cm <dbl> …
## $ short_description_Table...........185x90.cm <dbl> …
## $ short_description_Table...........200x60.cm <dbl> …
## $ short_description_Table...........200x90.cm <dbl> …
## $ short_description_Table...........220x100.cm <dbl> …
## $ short_description_Table...........240x60.cm <dbl> …
## $ short_description_Table...........300x75.cm <dbl> …
## $ short_description_Table...........310x75.cm <dbl> …
## $ short_description_Table...........70.cm <dbl> …
## $ short_description_Table...........70x70.cm <dbl> …
## $ short_description_Table...........74x74.cm <dbl> …
## $ short_description_Table...........75x75.cm <dbl> …
## $ short_description_Table...........85.cm <dbl> …
## $ short_description_Table..outdoor...........112x62.cm <dbl> …
## $ short_description_Table..outdoor...........116x74.cm <dbl> …
## $ short_description_Table..outdoor...........140x140.cm <dbl> …
## $ short_description_Table..outdoor...........153x73.cm <dbl> …
## $ short_description_Table..outdoor...........156x90.cm <dbl> …
## $ short_description_Table..outdoor...........55x54.cm <dbl> …
## $ short_description_Table..outdoor...........58x74.cm <dbl> …
## $ short_description_Table..outdoor...........60x62.cm <dbl> …
## $ short_description_Table..outdoor...........65.cm <dbl> …
## $ short_description_Table.stool.section..outdoor...........63x63.cm <dbl> …
## $ short_description_Table.2.chairs.w.armrests..outdoor...........71x71x73.cm <dbl> …
## $ short_description_Table.2.chairs..outdoor <dbl> …
## $ short_description_Table.2.chrs.w.armr.bench <dbl> …
## $ short_description_Table.2.chrsw.armr..bench..outdoor <dbl> …
## $ short_description_Table.2.folding.chairs..outdoor <dbl> …
## $ short_description_Table.4.chairs.w.armrests..outdoor <dbl> …
## $ short_description_Table.4.chairs.w.armrests..outdoor...........156x90.cm <dbl> …
## $ short_description_Table.4.chairs..outdoor <dbl> …
## $ short_description_Table.4.reclining.chairs..outdoor <dbl> …
## $ short_description_Table.4.reclining.chairs..outdoor...........156x90.cm <dbl> …
## $ short_description_Table.6.chairs.armr.bench..outdoor <dbl> …
## $ short_description_Table.6.chairs.w.armrests..outdoor <dbl> …
## $ short_description_Table.6.chairs.w.armrests..outdoor...........156x90.cm <dbl> …
## $ short_description_Table.6.reclining.chairs..outdoor <dbl> …
## $ short_description_Table.6.reclining.chairs..outdoor...........156x90.cm <dbl> …
## $ short_description_Table.8.reclining.chairs..outdoor <dbl> …
## $ short_description_Tablet.stand...........25x25.cm <dbl> …
## $ short_description_Three.seat.sofa <dbl> …
## $ short_description_Three.seat.sofa.bed <dbl> …
## $ short_description_Three.seat.sofa.bed.cover <dbl> …
## $ short_description_Top.panel.for.TV...........120x40.cm <dbl> …
## $ short_description_Top.panel.for.TV...........180x40.cm <dbl> …
## $ short_description_Top.panel...........120x42.cm <dbl> …
## $ short_description_Top.panel...........180x42.cm <dbl> …
## $ short_description_Toy.storage.with.wheels...........60x50x64.cm <dbl> …
## $ short_description_Tray.stand...........37x50x74.cm <dbl> …
## $ short_description_Tray.table...........45x53.cm <dbl> …
## $ short_description_Tray.table...........58x38x58.cm <dbl> …
## $ short_description_Tray.table...........65x32.cm <dbl> …
## $ short_description_Trestle.with.shelf...........70x71.93.cm <dbl> …
## $ short_description_Trestle...........70x70.cm <dbl> …
## $ short_description_Triple.cushion <dbl> …
## $ short_description_Trolley.table.with.storage <dbl> …
## $ short_description_Trolley...........26x48x77.cm <dbl> …
## $ short_description_Trolley...........35x45x78.cm <dbl> …
## $ short_description_Trolley...........38x28.cm <dbl> …
## $ short_description_Trolley...........48x24x77.cm <dbl> …
## $ short_description_Trolley...........85x55.cm <dbl> …
## $ short_description_TV.bench.with.doors.and.drawers...........240x42x74.cm <dbl> …
## $ short_description_TV.bench.with.doors...........120x42x74.cm <dbl> …
## $ short_description_TV.bench.with.doors...........180x42x38.cm <dbl> …
## $ short_description_TV.bench.with.drawers...........120x42x48.cm <dbl> …
## $ short_description_TV.bench.with.drawers...........180x42x74.cm <dbl> …
## $ short_description_TV.bench.with.plinth...........160x62x47.cm <dbl> …
## $ short_description_TV.bench.with.sliding.doors...........160x48x59.cm <dbl> …
## $ short_description_TV.bench...........100x36x53.cm <dbl> …
## $ short_description_TV.bench...........120x36x62.cm <dbl> …
## $ short_description_TV.bench...........120x36x85.cm <dbl> …
## $ short_description_TV.bench...........120x40x38.cm <dbl> …
## $ short_description_TV.bench...........120x40x48.cm <dbl> …
## $ short_description_TV.bench...........120x40x64.cm <dbl> …
## $ short_description_TV.bench...........120x41x53.cm <dbl> …
## $ short_description_TV.bench...........150x36x54.cm <dbl> …
## $ short_description_TV.bench...........160x40x50.cm <dbl> …
## $ short_description_TV.bench...........160x42x44.cm <dbl> …
## $ short_description_TV.bench...........160x42x45.cm <dbl> …
## $ short_description_TV.bench...........160x42x53.cm <dbl> …
## $ short_description_TV.bench...........160x42x54.cm <dbl> …
## $ short_description_TV.bench...........160x47x60.cm <dbl> …
## $ short_description_TV.bench...........180x40x38.cm <dbl> …
## $ short_description_TV.bench...........180x40x48.cm <dbl> …
## $ short_description_TV.bench...........180x40x64.cm <dbl> …
## $ short_description_TV.bench...........180x41x49.cm <dbl> …
## $ short_description_TV.bench...........180x41x53.cm <dbl> …
## $ short_description_TV.bench...........180x42x39.cm <dbl> …
## $ short_description_TV.bench...........180x42x48.cm <dbl> …
## $ short_description_TV.bench...........90x26x45.cm <dbl> …
## $ short_description_TV.bench...........90x40x38.cm <dbl> …
## $ short_description_TV.storage.combination...........145x49.cm <dbl> …
## $ short_description_TV.storage.combination...........180x41x190.cm <dbl> …
## $ short_description_TV.storage.combination...........200x41x95.cm <dbl> …
## $ short_description_TV.storage.combination...........202x36x175.cm <dbl> …
## $ short_description_TV.storage.combination...........240x42x230.cm <dbl> …
## $ short_description_TV.storage.combination...........258x41x95.cm <dbl> …
## $ short_description_TV.storage.combination...........300x36x175.cm <dbl> …
## $ short_description_TV.storage.combination...........326x197.cm <dbl> …
## $ short_description_TV.storage.combination...........331x214.cm <dbl> …
## $ short_description_TV.storage.combination...........332x214.cm <dbl> …
## $ short_description_TV.storage.combination...........336x41x95.cm <dbl> …
## $ short_description_TV.storage.combination.glass.doors...........180x40x192.cm <dbl> …
## $ short_description_TV.storage.combination.glass.doors...........240x40x128.cm <dbl> …
## $ short_description_TV.storage.combination.glass.doors...........240x40x230.cm <dbl> …
## $ short_description_TV.storage.combination.glass.doors...........240x42x128.cm <dbl> …
## $ short_description_TV.storage.combination.glass.doors...........240x42x129.cm <dbl> …
## $ short_description_TV.storage.combination.glass.doors...........240x42x190.cm <dbl> …
## $ short_description_TV.storage.combination.glass.doors...........240x42x230.cm <dbl> …
## $ short_description_TV.storage.combination.glass.doors...........276x41x95.cm <dbl> …
## $ short_description_TV.storage.combination.glass.doors...........300x20.40x211.cm <dbl> …
## $ short_description_TV.storage.combination.glass.doors...........300x40x230.cm <dbl> …
## $ short_description_TV.storage.combination.glass.doors...........300x42x193.cm <dbl> …
## $ short_description_TV.storage.combination.glass.doors...........300x42x211.cm <dbl> …
## $ short_description_TV.storage.combination.glass.doors...........320x41x190.cm <dbl> …
## $ short_description_TV.storage.combination.glass.doors...........322x47x212.cm <dbl> …
## $ short_description_TV.storage.unit...........183x39x147.cm <dbl> …
## $ short_description_Two.seat.sofa <dbl> …
## $ short_description_Two.seat.sofa.bed <dbl> …
## $ short_description_U.shaped.sofa..6.seat <dbl> …
## $ short_description_U.shaped.sofa..7.seat <dbl> …
## $ short_description_Underframe <dbl> …
## $ short_description_Underframe.for.chair.with.armrests <dbl> …
## $ short_description_Underframe.for.corner.table.top...........160x110.cm <dbl> …
## $ short_description_Underframe.for.table.top...........120x80.cm <dbl> …
## $ short_description_Underframe.for.table.top...........146x67x76.cm <dbl> …
## $ short_description_Underframe.sit.stand.crnr.table..el...........160x110.cm <dbl> …
## $ short_description_Underframe.sit.stand.f.table.tp..el...........120x80.cm <dbl> …
## $ short_description_Underframe.sit.stand.f.table.tp..el...........146x70.cm <dbl> …
## $ short_description_Underframe.sit.stand.f.table.tp..el...........160x80.cm <dbl> …
## $ short_description_Underframe...........35x25x10.cm <dbl> …
## $ short_description_Underframe...........35x35x10.cm <dbl> …
## $ short_description_Underframe...........70x25x10.cm <dbl> …
## $ short_description_Underframe...........70x35x10.cm <dbl> …
## $ short_description_Upholstered.bed.frame...........140x200.cm <dbl> …
## $ short_description_Wall.mounted.cabinet.combination...........105x35x120.cm <dbl> …
## $ short_description_Wall.mounted.cabinet.combination...........105x35x70.cm <dbl> …
## $ short_description_Wall.mounted.cabinet.combination...........175x25x70.cm <dbl> …
## $ short_description_Wall.mounted.cabinet.combination...........175x35x210.cm <dbl> …
## $ short_description_Wall.mounted.cabinet.combination...........175x35x70.cm <dbl> …
## $ short_description_Wall.mounted.cabinet.combination...........180x42x64.cm <dbl> …
## $ short_description_Wall.mounted.cabinet.combination...........35x35x35.cm <dbl> …
## $ short_description_Wall.mounted.cabinet.combination...........50x25x50.cm <dbl> …
## $ short_description_Wall.mounted.cabinet.combination...........70x35x105.cm <dbl> …
## $ short_description_Wall.mounted.cabinet.combination...........80x35x210.cm <dbl> …
## $ short_description_Wall.mounted.drop.leaf.table...........74x60.cm <dbl> …
## $ short_description_Wall.mounted.drop.leaf.table...........90x50.cm <dbl> …
## $ short_description_Wall.mounted.shelf.combination...........66x25x176.cm <dbl> …
## $ short_description_Wall.mounted.shelving.unit.w.4.comp...........70x35x70.cm <dbl> …
## $ short_description_Wall.mounted.shelving.unit...........35x25x35.cm <dbl> …
## $ short_description_Wall.mounted.shelving.unit...........35x35x35.cm <dbl> …
## $ short_description_Wall.mounted.storage.combination...........105x35x70.cm <dbl> …
## $ short_description_Wall.mounted.storage.combination...........130x35x176.cm <dbl> …
## $ short_description_Wall.mounted.storage.combination...........193x35x176.cm <dbl> …
## $ short_description_Wall.mounted.storage.combination...........297x35x176.cm <dbl> …
## $ short_description_Wall.mounted.storage.combination...........86x35x176.cm <dbl> …
## $ short_description_Wall.mounted.workspace.combination...........150x35x176.cm <dbl> …
## $ short_description_Wall.mounted.workspace.combination...........213x35x176.cm <dbl> …
## $ short_description_Wall.mounted.workspace.combination...........233x35x176.cm <dbl> …
## $ short_description_Wall.mounted.workspace.combination...........86x35x176.cm <dbl> …
## $ short_description_Wall.bracket.for.TV..fixed...........37.55.. <dbl> …
## $ short_description_Wall.bracket.for.TV..tilt.swivel...........19.32.. <dbl> …
## $ short_description_Wall.cabinet.with.2.doors...........60x22x128.cm <dbl> …
## $ short_description_Wall.cabinet.with.2.drawers...........35x35x35.cm <dbl> …
## $ short_description_Wall.cabinet.with.glass.door...........35x25x35.cm <dbl> …
## $ short_description_Wall.cabinet.with.glass.door...........35x35x35.cm <dbl> …
## $ short_description_Wall.panel.gate.leg.table..outdoor...........80x62x158.cm <dbl> …
## $ short_description_Wall.shelf.unit...........30x190.cm <dbl> …
## $ short_description_Wall.shelf...........110x26.cm <dbl> …
## $ short_description_Wall.shelf...........160x27.cm <dbl> …
## $ short_description_Wall.shelf...........190x26.cm <dbl> …
## $ short_description_Wall.shelf...........30x26.cm <dbl> …
## $ short_description_Wall.storage...........240x40x40.cm <dbl> …
## $ short_description_Wall.storage...........240x42x40.cm <dbl> …
## $ short_description_Wall.storage...........93x21x30.cm <dbl> …
## $ short_description_Wall.storage...........93x30.cm <dbl> …
## $ short_description_Wall.storage...........99x21x30.cm <dbl> …
## $ short_description_Wall.storage...........99x30.cm <dbl> …
## $ short_description_Wall.upright...........176.cm <dbl> …
## $ short_description_Wall.upright...........84.cm <dbl> …
## $ short_description_Wall.upright.drying.rack...........66x41x197.cm <dbl> …
## $ short_description_Wall.upright.shelves...........176x41x197.cm <dbl> …
## $ short_description_Wall.upright.shelves...........189x41x85.cm <dbl> …
## $ short_description_Wall.upright.shelves...........190x41x87.cm <dbl> …
## $ short_description_Wall.upright.shelves...........46x41x197.cm <dbl> …
## $ short_description_Wall.upright.shelves...........66x61x197.cm <dbl> …
## $ short_description_Wall.upright.shelves...........86x41x197.cm <dbl> …
## $ short_description_Wall.upright.shelves.drying.rack <dbl> …
## $ short_description_Wall.upright.shelves.drying.rack...........132x41x199.cm <dbl> …
## $ short_description_Wall.upright.shelves.drying.rack...........132x61x197.cm <dbl> …
## $ short_description_Wall.upright.shelves.rod...........132x41x197.cm <dbl> …
## $ short_description_Wall.upright.shelves.rod...........132x41x199.cm <dbl> …
## $ short_description_Wall.upright.shelves.rod...........190x40x84.cm <dbl> …
## $ short_description_Wall.upright.shelves.rod...........66x41x197.cm <dbl> …
## $ short_description_Wardrobe.combination...........100x60x201.cm <dbl> …
## $ short_description_Wardrobe.combination...........100x60x236.cm <dbl> …
## $ short_description_Wardrobe.combination...........150x44x236.cm <dbl> …
## $ short_description_Wardrobe.combination...........150x58x236.cm <dbl> …
## $ short_description_Wardrobe.combination...........150x60x201.cm <dbl> …
## $ short_description_Wardrobe.combination...........150x60x236.cm <dbl> …
## $ short_description_Wardrobe.combination...........150x66x236.cm <dbl> …
## $ short_description_Wardrobe.combination...........200x38x236.cm <dbl> …
## $ short_description_Wardrobe.combination...........200x44x236.cm <dbl> …
## $ short_description_Wardrobe.combination...........200x66x236.cm <dbl> …
## $ short_description_Wardrobe.combination...........250x60x236.cm <dbl> …
## $ short_description_Wardrobe.combination...........75x60x201.cm <dbl> …
## $ short_description_Wardrobe.w.10.doors...........380x42x221.cm <dbl> …
## $ short_description_Wardrobe.w.6.doors...........140x42x241.cm <dbl> …
## $ short_description_Wardrobe.with.2.doors...........78x190.cm <dbl> …
## $ short_description_Wardrobe.with.2.doors...........79x176.cm <dbl> …
## $ short_description_Wardrobe.with.2.doors.3.drawers...........160x42x181.cm <dbl> …
## $ short_description_Wardrobe.with.2.doors.3.drawers...........300x57x241.cm <dbl> …
## $ short_description_Wardrobe.with.2.sliding.doors...........120x197.cm <dbl> …
## $ short_description_Wardrobe.with.3.doors...........117x190.cm <dbl> …
## $ short_description_Wardrobe.with.3.doors...........140x42x161.cm <dbl> …
## $ short_description_Wardrobe.with.5.doors.3.drawers...........175.205x42x321.cm <dbl> …
## $ short_description_Wardrobe.with.6.drawers...........140x42x241.cm <dbl> …
## $ short_description_Wardrobe.with.7.doors.3.drawers...........240x57x221.cm <dbl> …
## $ short_description_Wardrobe.with.7.doors.6.drawers...........300x42x201.cm <dbl> …
## $ short_description_Wardrobe.with.shoe.shelves.2.doors...........115.140x42x241.cm <dbl> …
## $ short_description_Wardrobe.with.storage.bench...........150x50x192.cm <dbl> …
## $ short_description_Wardrobe...........100x35x236.cm <dbl> …
## $ short_description_Wardrobe...........100x38x236.cm <dbl> …
## $ short_description_Wardrobe...........100x60x201.cm <dbl> …
## $ short_description_Wardrobe...........100x60x236.cm <dbl> …
## $ short_description_Wardrobe...........120x50x192.cm <dbl> …
## $ short_description_Wardrobe...........122x59x216.cm <dbl> …
## $ short_description_Wardrobe...........140x57x261.cm <dbl> …
## $ short_description_Wardrobe...........150x38x236.cm <dbl> …
## $ short_description_Wardrobe...........150x44x236.cm <dbl> …
## $ short_description_Wardrobe...........150x58x201.cm <dbl> …
## $ short_description_Wardrobe...........150x60x201.cm <dbl> …
## $ short_description_Wardrobe...........150x60x236.cm <dbl> …
## $ short_description_Wardrobe...........150x66x201.cm <dbl> …
## $ short_description_Wardrobe...........150x66x236.cm <dbl> …
## $ short_description_Wardrobe...........175.200x57x251.cm <dbl> …
## $ short_description_Wardrobe...........200x44x236.cm <dbl> …
## $ short_description_Wardrobe...........200x60x201.cm <dbl> …
## $ short_description_Wardrobe...........200x60x236.cm <dbl> …
## $ short_description_Wardrobe...........200x66x236.cm <dbl> …
## $ short_description_Wardrobe...........240x57x123.cm <dbl> …
## $ short_description_Wardrobe...........240x57x231.cm <dbl> …
## $ short_description_Wardrobe...........240x57x251.cm <dbl> …
## $ short_description_Wardrobe...........240x61x281.cm <dbl> …
## $ short_description_Wardrobe...........250x60x201.cm <dbl> …
## $ short_description_Wardrobe...........250x60x236.cm <dbl> …
## $ short_description_Wardrobe...........250x66x236.cm <dbl> …
## $ short_description_Wardrobe...........276x211x236.cm <dbl> …
## $ short_description_Wardrobe...........300x58x201.cm <dbl> …
## $ short_description_Wardrobe...........300x60x236.cm <dbl> …
## $ short_description_Wardrobe...........340x42x241.cm <dbl> …
## $ short_description_Wardrobe...........50x38x236.cm <dbl> …
## $ short_description_Wardrobe...........50x60x201.cm <dbl> …
## $ short_description_Wardrobe...........60x50x128.cm <dbl> …
## $ short_description_Wardrobe...........60x50x192.cm <dbl> …
## $ short_description_Wardrobe...........60x51x178.cm <dbl> …
## $ short_description_Wardrobe...........63x59x216.cm <dbl> …
## $ short_description_Wardrobe...........74x51x149.cm <dbl> …
## $ short_description_Wardrobe...........75x60x236.cm <dbl> …
## $ short_description_Wardrobe...........79x61x202.cm <dbl> …
## $ short_description_Wardrobe...........80x139.cm <dbl> …
## $ short_description_Wardrobe...........80x50x171.cm <dbl> …
## $ short_description_Wardrobe...........80x50x187.cm <dbl> …
## $ short_description_Wardrobe...........88x58x208.cm <dbl> …
## $ short_description_Wing.chair <dbl> …
## $ short_description_Wire.basket...........25x51x15.cm <dbl> …
## $ short_description_Wire.shelf...........83x50.cm <dbl> …
## $ short_description_Work.bench...........110x55.cm <dbl> …
## $ short_description_Work.bench...........120x63.5x92.cm <dbl> …
## $ designer_X003.494.44.Separate.shelf.for.magazines..etc..helps.you.keep.your.things.organised.and.the.table.top.clear.The.castors.make.it.easy.to.move.the.table.if.needed. <dbl> …
## $ designer_X003.786.67.You.sit.comfortably.thanks.to.the.shaped.back.and.armrests.Complete.with.FANBYN.chair.frame. <dbl> …
## $ designer_X003.825.94.This.cover.s.ability.to.resist.abrasion.has.been.tested.to.handle.15.000.cycles..which.is.suitable.for.furniture.that.should.withstand.everyday.use.in.the.home.The.cover.has.a.lightfastness.level.of.5..the.ability.to.resist.colour.fading..on.a.scale.of.1.to.8..According.to.industry.standards..a.lightfastness.level.of.4.or.higher.is.suitable.for.home.use. <dbl> …
## $ designer_X004.135.38.SEGERSTA.cover.is.made.of.cotton.and.polyester.and.is.a.very.durable.fabric..with.a.woven.checkered.pattern.and.a.soft..smooth.surface.This.cover.s.ability.to.resist.abrasion.has.been.tested.to.handle.50.000.cycles..15.000.cycles.or.more.is.suitable.for.furniture.used.every.day.at.home..Over.30.000.cycles.means.a.good.ability.to.resist.abrasion.The.cover.has.a.lightfastness.level.of.5..the.ability.to.resist.colour.fading..on.a.scale.of.1.to.8..According.to.industry.standards..a.lightfastness.level.of.4.or.higher.is.suitable.for.home.use.This.product.is.an.extra.cover..Frame.is.sold.separately. <dbl> …
## $ designer_X092.210.16.You.sit.comfortably.thanks.to.the.shaped.back.and.armrests.Suitable.for.both.indoor.and.outdoor.use. <dbl> …
## $ designer_X102.945.11.It.s.easy.to.keep.the.cables.from.your.TV.and.other.devices.out.of.sight.but.close.at.hand..as.there.are.several.cable.outlets.at.the.back.of.the.TV.bench.You.can.choose.to.stand.the.TV.bench.on.the.floor.or.mount.it.on.the.wall.to.free.up.floor.space.If.you.want.to.organise.inside.you.can.complement.with.BESTÅ.interior.fittings.Steady.also.on.uneven.floors..thanks.to.the.adjustable.feet.This.furniture.must.be.fixed.to.the.wall.with.the.enclosed.wall.fastener.This.TV.bench.can.take.a.max.load.of.50.kg.on.the.top.Different.wall.materials.require.different.types.of.fixing.devices..Use.fixing.devices.suitable.for.the.walls.in.your.home..sold.separately.May.be.completed.with.STALLARP..STUBBARP.or.NANNARP.legs..This.TV.bench.requires.4.legs.and.1.BESTÅ.supporting.leg.May.be.completed.with.SULARP.legs..This.TV.bench.requires.2.legs.and.1.BESTÅ.supporting.leg. <dbl> …
## $ designer_X102.998.77.It.s.easy.to.keep.the.cables.from.your.TV.and.other.devices.out.of.sight.but.close.at.hand..as.there.are.several.cable.outlets.at.the.back.of.the.TV.bench.If.you.want.to.organise.inside.you.can.complement.with.BESTÅ.interior.fittings.Steady.also.on.uneven.floors..thanks.to.the.adjustable.feet.For.safety.reasons.this.TV.bench.shall.not.be.hung.on.the.wall.This.furniture.must.be.fixed.to.the.wall.with.the.enclosed.wall.fastener.This.TV.bench.can.take.a.max.load.of.50.kg.on.the.top.Different.wall.materials.require.different.types.of.fixing.devices..Use.fixing.devices.suitable.for.the.walls.in.your.home..sold.separately.May.be.completed.with.STALLARP..STUBBARP.or.NANNARP.legs..This.TV.bench.requires.4.legs.and.2.BESTÅ.supporting.legs.May.be.completed.with.SULARP.legs..This.TV.bench.requires.2.legs.and.2.BESTÅ.supporting.legs. <dbl> …
## $ designer_X103.310.14.Hook.and.loop.fasteners.keep.the.chair.cushion.in.place.The.chair.cushion.has.two.identical.sides.so.it.can.be.turned.over.for.even.wear.Easy.to.keep.clean.since.it.is.machine.washable. <dbl> …
## $ designer_X104.114.40.This.waterproof.storage.box.protects.your.outdoor.pads.and.cushions.from.rain..sun..dirt..dust.and.pollen.and.helps.you.keep.them.organised.when.they.re.not.being.used.Protecting.your.outdoor.pads.and.cushions.in.a.waterproof.storage.box.is.a.simple.and.effective.way.to.make.them.look.new.and.fresh.longer.The.colour.stays.fresh.for.longer.as.the.fabric.is.fade.resistant..Handles.make.it.easy.to.move.Make.sure.the.cushions.are.completely.dry.before.storing.them.away.in.the.storage.box.During.the.off.season..store.the.box.filled.with.cushions.in.a.cool.dry.place.indoors.The.storage.box.is.light.in.weight..so.you.may.need.to.fill.it.to.keep.it.from.moving.around.in.the.wind.For.example..the.storage.box.can.be.filled.with.3.seat.cushions.and.3.back.cushions.for.outdoor.sofas.and.4.decorative.cushions.For.example..the.storage.box.can.be.filled.with.6.seat.back.cushions.and.6.decorative.cushions.For.example..the.storage.box.can.be.filled.with.2.seat.cushions.and.2.back.cushions.for.outdoor.sofas..2.chair.cushions.for.armchairs.and.2.4.decorative.cushions. <dbl> …
## $ designer_X104.158.53.Can.be.used.individually.or.be.pushed.together.to.save.space.Low.weight..easy.to.move.Sizes...length.x.width.x.height..27x22x35.cm..36x26x38.cm..45x30x40.cm. <dbl> …
## $ designer_X104.238.86.Small..neat.dimensions.make.the.table.easy.to.furnish.with..even.when.space.is.limited.Table.with.drop.leaves.seats.2.4..makes.it.possible.to.adjust.the.table.size.according.to.need.You.can.store.for.example.cutlery..table.napkins.and.candles.in.the.6.drawers.under.the.table.top.This.table.has.been.tested.against.our.strictest.standards.for.stability..durability.and.safety.to.withstand.everyday.use.in.your.home.for.years.Seats.2.4.Only.recommended.for.indoor.use.For.increased.stability..re.tighten.the.screws.about.two.weeks.after.assembly.and.when.necessary.Combines.with.other.furniture.in.the.NORDEN.series. <dbl> …
## $ designer_X104.246.21.KNOPPARP.sofa.is.very.durable.thanks.to.the.metal.construction.and.strong.supporting.fabric.Thanks.to.the.innovative.construction..we.can.use.less.materials.and.foam.when.we.make.KNOPPARP.sofa..while.the.padded.cover.ensures.that.the.comfort.is.maintained.A.sofa.with.small..neat.dimensions.which.is.easy.to.furnish.with..even.when.space.is.limited..This.cover.is.made.from.KNISA.fabric.in.polyester..which.is.dope.dyed..It.s.a.durable.material.which.has.a.soft.feel.The.dope.dyeing.process.reduces.consumption.of.water.and.dyestuff.compared.to.traditional.dyeing.techniques.The.cover.is.easy.to.keep.clean.as.it.is.removable.and.can.be.machine.washed.Easy.to.bring.home.if.you.choose.to.carry.it.on.your.own..The.packaging.is.just.over.one.metre.in.height.and.weighs.17.kg.10.year.guarantee..Read.about.the.terms.in.the.guarantee.brochure.This.cover.s.ability.to.resist.abrasion.has.been.tested.to.handle.40.000.cycles..15.000.cycles.or.more.is.suitable.for.furniture.used.every.day.at.home..Over.30.000.cycles.means.a.good.ability.to.resist.abrasion.The.cover.has.a.lightfastness.level.of.5.6..the.ability.to.resist.colour.fading..on.a.scale.of.1.to.8..According.to.industry.standards..a.lightfastness.level.of.4.or.higher.is.suitable.for.home.use. <dbl> …
## $ designer_X104.283.32.Suitable.for.both.indoor.and.outdoor.use.The.cover.is.easy.to.put.on.and.remove.Protects.your.things.from.dust.At.the.top.of.the.cover.there.is.an.opening.that.allows.air.to.circulate.You.can.also.use.the.shelving.unit.with.cover.as.a.small.greenhouse. <dbl> …
## $ designer_X104.321.93.The.tabletop.in.tempered.glass.is.stain.resistant.and.easy.to.clean.Handle.with.care..A.damaged.edge.or.scratched.surface.can.cause.the.glass.to.suddenly.crack.or.break..Avoid.bumps.from.the.side...this.is.where.the.glass.is.most.vulnerable.Safety.fittings.included. <dbl> …
## $ designer_X104.415.69.You.can.choose.to.mount.the.door.on.the.right.or.left.side.To.be.completed.with.BESTÅ.hinges.1.door.requires.1.pack.of.hinges..Sold.separately.May.be.completed.with.knobs.or.handles..Sold.separately.Drill.template.for.marking.of.hole.positions.for.handles.or.knobs.is.sold.separately. <dbl> …
## $ designer_X104.417.29.The.cover.is.easy.to.keep.clean.as.it.is.removable.and.can.be.machine.washed. <dbl> …
## $ designer_X104.417.34.The.cover.is.easy.to.keep.clean.as.it.is.removable.and.can.be.machine.washed. <dbl> …
## $ designer_X104.691.86.The.sofa.is.packaged.in.a.space.efficient.way..making.it.easy.to.transport.and.carry.into.your.home.You.can.store.remote.controls.and.other.smaller.items.in.the.practical.pockets.on.the.sides.of.the.armrests. <dbl> …
## $ designer_X104.709.72.LJUNGEN.is.a.hardwearing.cover.made.of.a.polyester.fabric.with.a.soft..velvety.surface.and.a.slightly.reflective.lustre.This.product.is.an.extra.cover..Sofa.is.sold.separately.This.cover.s.ability.to.resist.abrasion.has.been.tested.to.handle.45.000.cycles..15.000.cycles.or.more.is.suitable.for.furniture.used.every.day.at.home..Over.30.000.cycles.means.a.good.ability.to.resist.abrasion.The.cover.has.a.lightfastness.level.of.5..the.ability.to.resist.colour.fading..on.a.scale.of.1.to.8..According.to.industry.standards..a.lightfastness.level.of.4.or.higher.is.suitable.for.home.use. <dbl> …
## $ designer_X193.254.57.The.cover.is.easy.to.keep.clean.as.it.is.removable.and.can.be.machine.washed. <dbl> …
## $ designer_X200.130.73.The.cushion.can.be.turned.over.and.therefore.has.two.sides.for.even.wear.Suitable.for.AGEN.chair. <dbl> …
## $ designer_X202.959.25.Separate.shelf.for.magazines..etc..helps.you.keep.your.things.organised.and.the.table.top.clear.The.castors.make.it.easy.to.move.the.table.if.needed. <dbl> …
## $ designer_X203.305.99.The.TV.bracket.can.be.angled.for.change.of.viewing.position..and.easy.access.to.cables.and.connections.The.TV.bracket.has.integrated.cable.management.so.you.can.easily.gather.and.conceal.wires.for.a.neater.TV.solution.UPPLEVA.TV.brackets.are.VESA.compatibleFits.most.37.55..flat.screen.TVs.Fits.MOSTORP..MALSJÖ.and.BESTÅ.TV.benches. <dbl> …
## $ designer_X204.002.76.One.half.of.the.table.top.can.be.raised.to.a.more.comfortable.height.for.eating.or.maybe.surfing.on.your.laptop.Practical.storage.space.underneath.the.table.top.You.can.eat.comfortably.at.your.coffee.table.by.raising.the.table.top. <dbl> …
## $ designer_X204.099.36.Choose.whether.you.want.to.place.it.vertically.or.horizontally.and.use.it.as.a.shelf.or.sideboard.This.furniture.must.be.fixed.to.the.wall.with.the.enclosed.wall.fastener.Different.wall.materials.require.different.types.of.fixing.devices..Use.fixing.devices.suitable.for.the.walls.in.your.home..sold.separately.Two.persons.are.needed.for.the.assembly.of.this.furniture.May.be.completed.with.KALLAX.insert..sold.separately. <dbl> …
## $ designer_X204.415.78.The.doors.keep.your.belongings.hidden.and.free.from.dust.You.can.choose.to.mount.the.door.on.the.right.or.left.side.To.be.completed.with.BESTÅ.hinges.1.door.requires.1.pack.of.hinges..Sold.separately.May.be.completed.with.knobs.or.handles..Sold.separately.Drill.template.for.marking.of.hole.positions.for.handles.or.knobs.is.sold.separately. <dbl> …
## $ designer_X301.150.66.You.sit.comfortably.thanks.to.the.chair.s.shaped.back.and.seat.You.can.hang.the.chair.on.a.hook.on.the.wall.to.save.space.You.can.fold.the.chair..so.it.takes.less.space.when.you.re.not.using.it.The.chair.is.available.in.different.colours...choose.your.favourite.or.mix.This.chair.has.been.tested.for.home.use.and.meets.the.requirements.for.durability.and.safety..set.forth.in.the.following.standards..EN.12520.and.EN.1022. <dbl> …
## $ designer_X304.156.25.Can.be.used.individually.or.be.pushed.together.to.save.space.Low.weight..easy.to.move.Sizes...length.x.width.x.height..27x22x35.cm..36x26x38.cm..45x30x40.cm. <dbl> …
## $ designer_X304.289.15.A.simple.unit.can.be.enough.storage.for.a.limited.space.or.the.foundation.for.a.larger.storage.solution.if.your.needs.change.You.can.choose.to.place.the.cabinet.on.the.floor.or.mount.it.on.the.wall.to.free.up.floor.space.You.can.create.your.own.unique.solution.by.freely.combining.cabinets.of.different.sizes..with.or.without.doors.and.drawers.The.drawers.have.integrated.push.openers..so.you.don.t.need.knobs.or.handles.and.can.open.the.drawer.with.just.a.light.push.Must.be.completed.with.EKET.suspension.rail.if.you.choose.to.mount.the.frame.on.the.wall..This.frame.requires.1.suspension.rail..35.cm.long..sold.separately.To.be.completed.with.feet..legs.or.plinth.if.you.choose.to.place.the.cabinet.on.the.floor..Sold.separately.The.max.load.for.a.wall.hung.cabinet.depends.on.the.wall.material. <dbl> …
## $ designer_X304.415.54.The.door.keeps.your.belongings.hidden.and.free.from.dust.You.can.choose.to.mount.the.door.on.the.right.or.left.side.To.be.completed.with.BESTÅ.hinges.1.door.requires.1.pack.of.hinges..Sold.separately.May.be.completed.with.knobs.or.handles..Sold.separately.Drill.template.for.marking.of.hole.positions.for.handles.or.knobs.is.sold.separately. <dbl> …
## $ designer_X304.510.67 <dbl> …
## $ designer_X304.662.81.Fits.in.TROFAST.frames.Can.be.stacked.when.completed.with.a.lid.May.be.completed.with.TROFAST.lid. <dbl> …
## $ designer_X402.409.89.This.foot.rest.helps.you.sit.in.a.good.working.position.at.your.desk.and.reduces.strain.on.your.legs..back.and.neck.It.s.easy.to.tilt.and.adjust.the.platform.to.a.comfortable.angle.just.by.applying.pressure.with.your.foot.Your.feet.stay.in.place.when.the.platform.is.tilted.because.it.has.a.non.slip.textured.surface.Rubber.feet.underneath.keep.the.foot.rest.firmly.in.place.on.the.floor.and.protect.sensitive.surfaces. <dbl> …
## $ designer_X402.998.85.It.s.easy.to.keep.the.cables.from.your.TV.and.other.devices.out.of.sight.but.close.at.hand..as.there.are.several.cable.outlets.at.the.back.of.the.TV.bench.If.you.want.to.organise.inside.you.can.complement.with.BESTÅ.interior.fittings.Steady.also.on.uneven.floors..thanks.to.the.adjustable.feet.For.safety.reasons.this.TV.bench.shall.not.be.hung.on.the.wall.The.TV.bench.must.be.fixed.to.the.wall.with.the.included.wall.fastener.This.TV.bench.can.take.a.max.load.of.50.kg.on.the.top.Different.wall.materials.require.different.types.of.fixing.devices..Use.fixing.devices.suitable.for.the.walls.in.your.home..sold.separately.May.be.completed.with.STALLARP..STUBBARP.or.NANNARP.legs..This.TV.bench.requires.4.legs.and.1.BESTÅ.supporting.leg.May.be.completed.with.SULARP.legs..This.TV.bench.requires.2.legs.and.1.BESTÅ.supporting.leg. <dbl> …
## $ designer_X402.998.90.It.s.easy.to.keep.the.cables.from.your.TV.and.other.devices.out.of.sight.but.close.at.hand..as.there.are.several.cable.outlets.at.the.back.of.the.TV.bench.If.you.want.to.organise.inside.you.can.complement.with.BESTÅ.interior.fittings.Steady.also.on.uneven.floors..thanks.to.the.adjustable.feet.For.safety.reasons.this.TV.bench.shall.not.be.hung.on.the.wall.The.TV.bench.must.be.fixed.to.the.wall.with.the.included.wall.fastener.This.TV.bench.can.take.a.max.load.of.50.kg.on.the.top.Different.wall.materials.require.different.types.of.fixing.devices..Use.fixing.devices.suitable.for.the.walls.in.your.home..sold.separately.May.be.completed.with.STALLARP..STUBBARP.or.NANNARP.legs..This.TV.bench.requires.4.legs.and.1.BESTÅ.supporting.leg.May.be.completed.with.SULARP.legs..This.TV.bench.requires.2.legs.and.1.BESTÅ.supporting.leg. <dbl> …
## $ designer_X403.193.98.The.high.back.gives.good.support.for.your.neck.and.head. <dbl> …
## $ designer_X404.199.82.The.leather.ages.beautifully.and.acquires.a.nice.patina.over.time.10.year.guarantee..Read.about.the.terms.in.the.guarantee.brochure.The.safety.castors.have.a.pressure.sensitive.brake.mechanism.that.keeps.the.chair.in.place.when.you.stand.up..and.releases.automatically.when.you.sit.down.Seat.and.backrest.are.adjustable.in.height.and.give.you.maximum.support.regardless.of.your.body.height.You.get.good.support.for.your.thighs.and.back.since.the.seat.depth.is.adjustable.You.can.lean.back.with.perfect.balance..as.the.tilt.tension.mechanism.automatically.adjusts.the.resistance.to.suit.your.weight.and.movements..This.chair.has.been.tested.for.office.use.and.meets.the.requirements.for.durability.and.stability.set.forth.in.the.following.standards..EN.1335.and.ANSI.BIFMA.x5.1. <dbl> …
## $ designer_X404.262.75.Solid.wood.is.a.hardwearing.natural.material.Handmade.by.skilled.craftspeople..which.makes.every.product.unique.in.design.and.size.For.increased.stability..re.tighten.the.screws.about.two.weeks.after.assembly.and.when.necessary.Seats.4.6. <dbl> …
## $ designer_X404.662.85.Fits.in.TROFAST.frames.Can.be.stacked.when.completed.with.a.lid.May.be.completed.with.TROFAST.lid. <dbl> …
## $ designer_X492.284.74.Suitable.for.both.indoor.and.outdoor.use.You.sit.comfortably.thanks.to.the.chair.s.shaped.back.and.seat. <dbl> …
## $ designer_X500.583.76.Rattan.is.a.natural.material.which.ages.beautifully.and.develops.its.own.unique.character.over.time.Handwoven..each.piece.of.furniture.is.unique.Stackable.chair..saves.space.when.not.in.use.Plastic.feet..protect.the.furniture.if.in.contact.with.a.moist.surface.May.be.completed.with.NORNA.chair.pad.for.enhanced.seating.comfort. <dbl> …
## $ designer_X502.638.38.Shallow.shelves.help.you.to.use.small.wall.spaces.effectively.by.accommodating.small.items.in.a.minimum.of.space.Adjustable.shelves..adapt.space.between.shelves.according.to.your.needs.A.simple.unit.can.be.enough.storage.for.a.limited.space.or.the.foundation.for.a.larger.storage.solution.if.your.needs.change.This.furniture.must.be.fixed.to.the.wall.with.the.enclosed.wall.fastener.Different.wall.materials.require.different.types.of.fixing.devices..Use.fixing.devices.suitable.for.the.walls.in.your.home..sold.separately.Min..ceiling.height.required..205.cm.1.fixed.shelf.and.4.adjustable.shelves.included.May.be.completed.with.BILLY.corner.fitting.to.form.a.stable.corner.unit.May.be.completed.with.BILLY.height.extension.unit.in.the.same.width.for.added.storage.vertically.May.be.completed.with.doors..available.in.different.colours.and.designs. <dbl> …
## $ designer_X502.755.96.Adjustable.hinges.allow.you.to.adjust.the.door.horizontally.and.vertically.Behind.the.panel.doors.you.can.keep.your.belongings.hidden.and.free.from.dust.Hinges.included.Knobs.included.1.door.will.fit.BILLY.bookcase.40.cm.and.2.doors.will.fit.BILLY.bookcase.80.cm.Can.be.used.on.the.corner.unit.only.if.the.shelf.next.to.it.has.no.doors.The.door.does.not.fit.bookcases.purchased.in.the.spring.of.2014.or.earlier. <dbl> …
## $ designer_X504.224.94.You.can.position.the.shelf.and.clothes.rail.in.two.different.ways...clothes.rail.at.the.top.and.shelf.down.below..or.both.together.at.the.top.of.the.wardrobe.Deep.enough.to.hold.standard.sized.adult.hangers.With.the.included.colourful.stickers..you.can.quickly.label.the.doors.in.your.own.personal.way.You.can.also.write.with.chalk.on.the.sticker.to.keep.track.of.where.you.have.your.things.WARNING..TIPPING.HAZARD...Unanchored.furniture.can.tip.over..This.furniture.shall.be.anchored.to.the.wall.with.the.enclosed.safety.fitting.to.prevent.it.from.tipping.over.Different.wall.materials.require.different.types.of.fixing.devices..Use.fixing.devices.suitable.for.the.walls.in.your.home..sold.separately. <dbl> …
## $ designer_X504.436.27.Drawers.make.it.easy.to.keep.your.things.organised.To.be.completed.with.BESTÅ.drawer.frame.60X15X40.cm.and.BESTÅ.drawer.runner..sold.separately.May.be.completed.with.knobs.or.handles..Sold.separately.Drill.template.for.marking.of.hole.positions.for.handles.or.knobs.is.sold.separately. <dbl> …
## $ designer_X504.662.75.Fits.in.TROFAST.frames.Can.be.stacked.when.completed.with.a.lid.May.be.completed.with.TROFAST.lid. <dbl> …
## $ designer_X504.689.53.Small.and.easy.to.place.chair.bed.which.can.easily.be.converted.into.a.single.bed.The.storage.space.under.the.seat.has.room.for.bedlinen.or.other.things.Just.as.nice.to.look.at.from.all.sides...perfect.to.place.in.the.middle.of.the.room.or.use.as.a.room.divider.The.cushion.cover.is.easy.to.keep.clean.and.fresh..as.you.can.take.it.off.and.machine.wash.it.Easy.to.assemble.1.cushion.included. <dbl> …
## $ designer_X593.376.70.Height.adjustable.children.s.desk.chair.which.you.can.swivel.to.the.desired.height.You.sit.comfortably.since.the.chair.is.adjustable.in.height.May.be.completed.with.KOLON.floor.protector.This.product.has.been.tested.for.domestic.use.Recommended.for.ages.7...12.years. <dbl> …
## $ designer_X602.141.59.You.can.collect.cables.and.extension.leads.on.the.shelf.under.the.table.top..so.they.re.hidden.but.still.close.at.hand.Can.be.placed.in.the.middle.of.a.room.because.the.back.is.finished.You.can.mount.the.storage.unit.to.the.right.or.left..according.to.your.space.or.preference..Combines.with.other.furniture.in.the.MALM.series.May.be.completed.with.SUMMERA.drawer.insert.with.6.compartments.to.create.order.in.the.drawer. <dbl> …
## $ designer_X602.141.83.The.pull.out.panel.gives.you.an.extra.work.surface.You.can.collect.cables.and.extension.leads.on.the.shelf.under.the.table.top..so.they.re.hidden.but.still.close.at.hand.You.can.mount.the.pull.out.panel.to.the.left.or.right.according.to.your.needs.Can.be.placed.in.the.middle.of.a.room.because.the.back.is.finished.Combines.with.other.furniture.in.the.MALM.series. <dbl> …
## $ designer_X602.957.06.With.a.media.shelf.you.can.make.the.most.of.the.wall.area..while.freeing.up.space.on.the.floor.Different.wall.materials.require.different.types.of.fixing.devices..Use.fixing.devices.suitable.for.the.walls.in.your.home..sold.separately. <dbl> …
## $ designer_X604.415.62.Drawers.make.it.easy.to.keep.your.things.organised.To.be.completed.with.BESTÅ.drawer.frame.60X15X40.cm.and.BESTÅ.drawer.runner..sold.separately.May.be.completed.with.knobs.or.handles..Sold.separately.Drill.template.for.marking.of.hole.positions.for.handles.or.knobs.is.sold.separately. <dbl> …
## $ designer_X702.453.39.Can.be.placed.in.the.middle.of.a.room.because.the.back.is.finished.The.high.gloss.surfaces.reflect.light.and.give.a.vibrant.look. <dbl> …
## $ designer_X702.842.03.A.sofa.bed.with.small..neat.dimensions.which.is.easy.to.furnish.with..even.when.space.is.limited.Readily.converts.into.a.bed.Fixed.cover. <dbl> …
## $ designer_X702.945.08.It.s.easy.to.keep.the.cables.from.your.TV.and.other.devices.out.of.sight.but.close.at.hand..as.there.are.several.cable.outlets.at.the.back.of.the.TV.bench.You.can.choose.to.stand.the.TV.bench.on.the.floor.or.mount.it.on.the.wall.to.free.up.floor.space.If.you.want.to.organise.inside.you.can.complement.with.BESTÅ.interior.fittings.Steady.also.on.uneven.floors..thanks.to.the.adjustable.feet.This.furniture.must.be.fixed.to.the.wall.with.the.enclosed.wall.fastener.This.TV.bench.can.take.a.max.load.of.50.kg.on.the.top.Different.wall.materials.require.different.types.of.fixing.devices..Use.fixing.devices.suitable.for.the.walls.in.your.home..sold.separately.May.be.completed.with.STALLARP..STUBBARP.or.NANNARP.legs..This.TV.bench.requires.4.legs.and.2.BESTÅ.supporting.legs.May.be.completed.with.SULARP.legs..This.TV.bench.requires.2.legs.and.2.BESTÅ.supporting.legs. <dbl> …
## $ designer_X702.998.79.It.s.easy.to.keep.the.cables.from.your.TV.and.other.devices.out.of.sight.but.close.at.hand..as.there.are.several.cable.outlets.at.the.back.of.the.TV.bench.If.you.want.to.organise.inside.you.can.complement.with.BESTÅ.interior.fittings.Steady.also.on.uneven.floors..thanks.to.the.adjustable.feet.For.safety.reasons.this.TV.bench.shall.not.be.hung.on.the.wall.This.furniture.must.be.fixed.to.the.wall.with.the.enclosed.wall.fastener.This.TV.bench.can.take.a.max.load.of.50.kg.on.the.top.Different.wall.materials.require.different.types.of.fixing.devices..Use.fixing.devices.suitable.for.the.walls.in.your.home..sold.separately.May.be.completed.with.STALLARP..STUBBARP.or.NANNARP.legs..This.TV.bench.requires.4.legs.and.2.BESTÅ.supporting.legs.May.be.completed.with.SULARP.legs..This.TV.bench.requires.2.legs.and.2.BESTÅ.supporting.legs. <dbl> …
## $ designer_X704.289.04.Metal.legs.raise.your.EKET.combination.from.the.floor..giving.a.light.airy.look.and.making.it.easy.to.clean.the.floor.underneath.Adjustable.feet..stands.steady.also.on.an.uneven.floor. <dbl> …
## $ designer_X704.415.66.You.can.choose.to.mount.the.door.on.the.right.or.left.side.To.be.completed.with.BESTÅ.hinges.1.door.requires.1.pack.of.hinges..Sold.separately.May.be.completed.with.knobs.or.handles..Sold.separately.Drill.template.for.marking.of.hole.positions.for.handles.or.knobs.is.sold.separately. <dbl> …
## $ designer_X704.436.26.The.front.may.be.used.as.a.door.or.as.a.drawer.front.You.can.choose.to.mount.the.door.on.the.right.or.left.side.The.doors.keep.your.belongings.hidden.and.free.from.dust.To.be.completed.with.BESTÅ.hinges.if.used.as.door..Sold.separately.To.be.completed.with.BESTÅ.drawer.frame.60x25x40.cm.and.BESTÅ.drawer.runner.if.used.as.drawer.front..Sold.separately.May.be.completed.with.knobs.or.handles..Sold.separately.Drill.template.for.marking.of.hole.positions.for.handles.or.knobs.is.sold.separately. <dbl> …
## $ designer_X704.510.65 <dbl> …
## $ designer_X704.516.35.Easy.to.keep.clean.since.the.cushion.can.be.machine.washed.Recommended.for.ages.from.3.years.Children.s.armchair.frame.is.sold.separately. <dbl> …
## $ designer_X704.655.38.You.sit.comfortably.thanks.to.the.restful.flexibility.of.the.seat.You.sit.comfortably.thanks.to.the.padded.seat.Velvet.The.velvet.reflects.light.in.a.characteristic.way.which.may.make.the.colour.appear.as.if.it.changes. <dbl> …
## $ designer_X792.396.35.The.cover.is.easy.to.keep.clean.as.it.is.removable.and.can.be.machine.washed.This.product.is.an.extra.cover..Sofa.is.sold.separately. <dbl> …
## $ designer_X802.612.58.You.can.choose.to.use.either.the.soft.closing.or.push.open.function.With.the.push.opener.you.don.t.need.knobs.or.handles.and.can.open.the.door.with.a.light.push.With.the.soft.closing.function.your.doors.close.silently.and.softly..Knobs.and.handles.are.sold.separately.If.you.choose.the.soft.closing.function.for.your.BESTÅ..we.recommend.complementing.the.fronts.with.knobs.handles.to.make.the.drawers.cabinets.more.convenient.to.open. <dbl> …
## $ designer_X802.945.03.It.s.easy.to.keep.the.cables.from.your.TV.and.other.devices.out.of.sight.but.close.at.hand..as.there.are.several.cable.outlets.at.the.back.of.the.TV.bench.You.can.choose.to.stand.the.TV.bench.on.the.floor.or.mount.it.on.the.wall.to.free.up.floor.space.If.you.want.to.organise.inside.you.can.complement.with.BESTÅ.interior.fittings.Steady.also.on.uneven.floors..thanks.to.the.adjustable.feet.This.furniture.must.be.fixed.to.the.wall.with.the.enclosed.wall.fastener.This.TV.bench.can.take.a.max.load.of.50.kg.on.the.top.Different.wall.materials.require.different.types.of.fixing.devices..Use.fixing.devices.suitable.for.the.walls.in.your.home..sold.separately.May.be.completed.with.STALLARP..STUBBARP.or.NANNARP.legs..This.TV.bench.requires.4.legs.and.1.BESTÅ.supporting.leg.May.be.completed.with.SULARP.legs..This.TV.bench.requires.2.legs.and.1.BESTÅ.supporting.leg. <dbl> …
## $ designer_X803.826.08.This.cover.s.ability.to.resist.abrasion.has.been.tested.to.handle.15.000.cycles..which.is.suitable.for.furniture.that.should.withstand.everyday.use.in.the.home.The.cover.has.a.lightfastness.level.of.5..the.ability.to.resist.colour.fading..on.a.scale.of.1.to.8..According.to.industry.standards..a.lightfastness.level.of.4.or.higher.is.suitable.for.home.use. <dbl> …
## $ designer_X803.891.48.You.sit.comfortably.thanks.to.the.chair.s.shaped.back.and.seat.Complete.with.FANBYN.chair.frame. <dbl> …
## $ designer_X804.046.72.You.sit.comfortably.thanks.to.the.restful.flexibility.of.the.seat.You.sit.comfortably.thanks.to.the.padded.seat.This.chair.has.been.tested.for.home.use.and.meets.the.requirements.for.durability.and.safety..set.forth.in.the.following.standards..EN.12520.and.EN.1022. <dbl> …
## $ designer_X804.190.70.The.shape.of.the.chair.backs.are.adapted.to.fit.the.corners.of.the.table..so.you.save.space.when.the.chairs.are.pushed.up.against.the.table.Table..length.84.cm..width.84.cm..height.75.cm...Chair..width.61.cm..depth.53.cm..height.76.cm..seat.height.46.cm..seat.width.55.cm..seat.depth.39.cm.. <dbl> …
## $ designer_X804.302.04.Suitable.for.both.indoor.and.outdoor.use.The.cover.is.easy.to.put.on.and.remove.Protects.your.things.from.dust.At.the.top.of.the.cover.there.is.an.opening.that.allows.air.to.circulate.You.can.also.use.the.shelving.unit.with.cover.as.a.small.greenhouse. <dbl> …
## $ designer_X804.334.86.Perfect.height.for.small.children..They.can.easily.reach.and.find.things.on.their.own.With.the.included.colourful.stickers..you.can.quickly.label.the.drawers.in.your.own.personal.way.You.can.also.write.with.chalk.on.the.sticker.to.keep.track.of.where.you.have.your.things.WARNING..TIPPING.HAZARD...Unanchored.furniture.can.tip.over..This.furniture.shall.be.anchored.to.the.wall.with.the.enclosed.safety.fitting.to.prevent.it.from.tipping.over.Different.wall.materials.require.different.types.of.fixing.devices..Use.fixing.devices.suitable.for.the.walls.in.your.home..sold.separately. <dbl> …
## $ designer_X804.415.56.The.front.may.be.used.as.a.door.or.as.a.drawer.front.You.can.choose.to.mount.the.door.on.the.right.or.left.side.The.door.keeps.your.belongings.hidden.and.free.from.dust.To.be.completed.with.BESTÅ.hinges.if.used.as.door..Sold.separately.To.be.completed.with.BESTÅ.drawer.frame.60x25x40.cm.and.BESTÅ.drawer.runner.if.used.as.drawer.front..Sold.separately.May.be.completed.with.knobs.or.handles..Sold.separately.Drill.template.for.marking.of.hole.positions.for.handles.or.knobs.is.sold.separately. <dbl> …
## $ designer_X902.179.72.Adjustable.feet.make.the.table.stand.steady.also.on.uneven.floors.Screws.for.fixing.the.legs.to.the.table.top.are.included.Suitable.for.table.tops.with.a.minimum.thickness.of.25.mm. <dbl> …
## $ designer_X902.952.53.Cable.outlets.make.it.easy.to.lead.cables.out.the.back..so.they.re.hidden.from.view.but.close.at.hand.when.you.need.them.The.large.drawer.makes.it.easy.to.keep.remote.controls..game.controllers.and.other.TV.accessories.organised.Behind.the.doors..there.s.plenty.of.extra.storage.space.to.help.keep.your.living.room.organised.A.floor.standing.TV.bench.must.be.fixed.to.the.wall.with.the.included.wall.fastener.Different.wall.materials.require.different.types.of.fixing.devices..Use.fixing.devices.suitable.for.the.walls.in.your.home..sold.separately.Push.openers.included.1.fixed.shelf.and.3.adjustable.shelves.included. <dbl> …
## $ designer_X902.994.49.A.good.solution.where.space.is.limited.It.s.easier.to.get.in.and.out.of.the.bed.with.a.centered.ladder..You.can.use.the.space.under.the.bed.for.storage..a.workspace.or.seating.Recommended.for.ages.from.6.years.High.beds.and.the.upper.bed.of.bunk.or.loft.beds.are.not.suitable.for.children.under.6.years.due.to.the.risk.of.injury.from.falls.Bed.base.included.Mattress.and.bedlinen.are.sold.separately.Max.load.indicates.static.weight..in.other.words.the.load.which.the.bed.withstands.if.you.lie.or.sit.on.it. <dbl> …
## $ designer_X903.233.93.Drill.template.for.marking.the.hole.location.of.knobs.or.handles.makes.it.easier.for.you.to.place.them.correctly.The.strip.on.the.drill.template.is.put.against.the.edge.of.the.door.or.drawer.front..helps.you.to.place.the.handle.perfectly.straight.vertically.or.horizontally. <dbl> …
## $ designer_X903.310.91.The.door.can.be.hung.with.the.opening.to.the.right.or.the.left.To.be.completed.with.3.HJÄLPA.hinges..sold.separately.Fits.with.PLATSA.wardrobe.system.Knobs.and.handles.are.sold.separately. <dbl> …
## $ designer_X904.238.87.Small..neat.dimensions.make.the.table.easy.to.furnish.with..even.when.space.is.limited.Table.with.drop.leaves.seats.2.4..makes.it.possible.to.adjust.the.table.size.according.to.need.You.can.store.for.example.cutlery..table.napkins.and.candles.in.the.6.drawers.under.the.table.top.This.table.has.been.tested.against.our.strictest.standards.for.stability..durability.and.safety.to.withstand.everyday.use.in.your.home.for.years.Seats.2.4.Only.recommended.for.indoor.use.Combines.with.other.furniture.in.the.NORDEN.series.For.increased.stability..re.tighten.the.screws.about.two.weeks.after.assembly.and.when.necessary. <dbl> …
## $ designer_X904.436.25.The.doors.keep.your.belongings.hidden.and.free.from.dust.You.can.choose.to.mount.the.door.on.the.right.or.left.side.To.be.completed.with.BESTÅ.hinges.1.door.requires.1.pack.of.hinges..Sold.separately.May.be.completed.with.knobs.or.handles..Sold.separately.Drill.template.for.marking.of.hole.positions.for.handles.or.knobs.is.sold.separately. <dbl> …
## $ designer_X904.710.86.The.chair.legs.are.made.of.solid.wood..which.is.a.durable.natural.material.You.sit.comfortably.thanks.to.the.high.back.and.seat.with.polyester.wadding.For.increased.stability..re.tighten.the.screws.about.two.weeks.after.assembly.and.when.necessary.This.chair.has.been.tested.for.home.use.and.meets.the.requirements.for.durability.and.safety..set.forth.in.the.following.standards..EN.12520.and.EN.1022. <dbl> …
## $ designer_X904.762.58.The.cover.is.easy.to.keep.clean.since.it.is.removable.and.machine.washable.This.product.is.an.extra.cover..Sofa.is.sold.separately. <dbl> …
## $ designer_X992.396.15.The.cover.is.easy.to.keep.clean.as.it.is.removable.and.can.be.machine.washed.This.product.is.an.extra.cover..Sofa.is.sold.separately. <dbl> …
## $ designer_A.Fredriksson.J.Hultqvist.W.Chong <dbl> …
## $ designer_A.Huldén.S.Dahlman <dbl> …
## $ designer_Andreas.Fredriksson <dbl> …
## $ designer_Anna.Efverlund <dbl> …
## $ designer_Anna.Palleschitz <dbl> …
## $ designer_Annie.Huldén <dbl> …
## $ designer_C.Halskov.H.Dalsgaard <dbl> …
## $ designer_C.Styrbjörn.M.Axelsson <dbl> …
## $ designer_Carina.Bengs <dbl> …
## $ designer_Carina.Bengs.Ebba.Strandmark <dbl> …
## $ designer_Carina.Bengs.IKEA.of.Sweden <dbl> …
## $ designer_Carina.Bengs.IKEA.of.Sweden.E.Strandmark <dbl> …
## $ designer_Carl.Öjerstam <dbl> …
## $ designer_Carl.Öjerstam.Ehlén.Johansson <dbl> …
## $ designer_Carl.Öjerstam.IKEA.of.Sweden <dbl> …
## $ designer_Carl.Öjerstam.Marcus.Arvonen.IKEA.of.Sweden <dbl> …
## $ designer_Carl.Öjerstam.Ola.Wihlborg.IKEA.of.Sweden <dbl> …
## $ designer_Carl.Öjerstam.S.Lanneskog.J.Marnell <dbl> …
## $ designer_Chenyi.Ke <dbl> …
## $ designer_Chenyi.Ke.IKEA.of.Sweden <dbl> …
## $ designer_Chris.Martin <dbl> …
## $ designer_Chris.Martin.IKEA.of.Sweden <dbl> …
## $ designer_Chris.Martin.Ola.Wihlborg.IKEA.of.Sweden <dbl> …
## $ designer_David.Wahl <dbl> …
## $ designer_David.Wahl.IKEA.of.Sweden <dbl> …
## $ designer_David.Wahl.IKEA.of.Sweden.John.Jonas.Petrus.Paul.Caroline <dbl> …
## $ designer_David.Wahl.John.Jonas.Petrus.Paul.Caroline <dbl> …
## $ designer_David.Wahl.Lisa.Hilland.IKEA.of.Sweden <dbl> …
## $ designer_David.Wahl.Lisa.Norinder <dbl> …
## $ designer_E.Thomasson.P.Süssmann <dbl> …
## $ designer_Ebba.Strandmark <dbl> …
## $ designer_Ebba.Strandmark.Carina.Bengs <dbl> …
## $ designer_Ebba.Strandmark.IKEA.of.Sweden <dbl> …
## $ designer_Ebba.Strandmark.IKEA.of.Sweden.Ola.Wihlborg.Ehlén.Johansson <dbl> …
## $ designer_Ehlén.Johansson <dbl> …
## $ designer_Ehlén.Johansson.Andreas.Fredriksson.IKEA.of.Sweden <dbl> …
## $ designer_Ehlén.Johansson.Ebba.Strandmark.IKEA.of.Sweden <dbl> …
## $ designer_Ehlén.Johansson.Francis.Cayouette <dbl> …
## $ designer_Ehlén.Johansson.Fredriksson.L.Löwenhielm.Hilland <dbl> …
## $ designer_Ehlén.Johansson.IKEA.of.Sweden <dbl> …
## $ designer_Ehlén.Johansson.IKEA.of.Sweden.K.Hagberg.M.Hagberg <dbl> …
## $ designer_Ehlén.Johansson.J.Löfgren.J.Pettersson <dbl> …
## $ designer_Ehlén.Johansson.K.Hagberg.M.Hagberg <dbl> …
## $ designer_Ehlén.Johansson.K.Hagberg.M.Hagberg.IKEA.of.Sweden <dbl> …
## $ designer_Ehlén.Johansson.Ola.Wihlborg <dbl> …
## $ designer_Ehlén.Johansson.Ola.Wihlborg.IKEA.of.Sweden <dbl> …
## $ designer_Elizabet.Gutierrez <dbl> …
## $ designer_Eva.Lilja.Löwenhielm <dbl> …
## $ designer_Eva.Lilja.Löwenhielm.IKEA.of.Sweden <dbl> …
## $ designer_Eva.Lilja.Löwenhielm.IKEA.of.Sweden.David.Wahl <dbl> …
## $ designer_Eva.Lilja.Löwenhielm.IKEA.of.Sweden.Jonas.Hultqvist <dbl> …
## $ designer_Eva.Lilja.Löwenhielm.IKEA.of.Sweden.Nike.Karlsson <dbl> …
## $ designer_Eva.Lilja.Löwenhielm.Jonas.Hultqvist.IKEA.of.Sweden <dbl> …
## $ designer_Eva.Lilja.Löwenhielm.K.Hagberg.M.Hagberg.IKEA.of.Sweden <dbl> …
## $ designer_Eva.Lilja.Löwenhielm.K.Malmvall.E.Lilja.Löwenhielm <dbl> …
## $ designer_Francis.Cayouette <dbl> …
## $ designer_Francis.Cayouette.Ehlén.Johansson <dbl> …
## $ designer_Francis.Cayouette.Ehlén.Johansson.IKEA.of.Sweden <dbl> …
## $ designer_Francis.Cayouette.Eva.Lilja.Löwenhielm <dbl> …
## $ designer_Francis.Cayouette.IKEA.of.Sweden <dbl> …
## $ designer_Francis.Cayouette.Jomi.Evers <dbl> …
## $ designer_Francis.Cayouette.K.Hagberg.M.Hagberg <dbl> …
## $ designer_Francis.Cayouette.Maja.Ganszyniec <dbl> …
## $ designer_Francis.Cayouette.Mia.Lagerman <dbl> …
## $ designer_Francis.Cayouette.Nike.Karlsson <dbl> …
## $ designer_Fredriksson.L.Löwenhielm.Hilland <dbl> …
## $ designer_Fredriksson.L.Löwenhielm.Hilland.IKEA.of.Sweden <dbl> …
## $ designer_Gillis.Lundgren <dbl> …
## $ designer_Gillis.Lundgren.IKEA.of.Sweden <dbl> …
## $ designer_Gillis.Lundgren.IKEA.of.Sweden.K.Hagberg.M.Hagberg <dbl> …
## $ designer_Gillis.Lundgren.K.Hagberg.M.Hagberg <dbl> …
## $ designer_Gillis.Lundgren.K.Hagberg.M.Hagberg.IKEA.of.Sweden <dbl> …
## $ designer_Gustav.Carlberg <dbl> …
## $ designer_Gustav.Carlberg.IKEA.of.Sweden <dbl> …
## $ designer_Gustav.Carlberg.Johanna.Asshoff <dbl> …
## $ designer_H.Preutz.A.Fredriksson <dbl> …
## $ designer_H.Preutz.N.Karlsson <dbl> …
## $ designer_HAY <dbl> …
## $ designer_HAY.A.Fredriksson.J.Hultqvist.W.Chong <dbl> …
## $ designer_Henrik.Preutz <dbl> …
## $ designer_Henrik.Preutz.IKEA.of.Sweden <dbl> …
## $ designer_Henrik.Preutz.Olle.Lundberg <dbl> …
## $ designer_IKEA.of.Sweden <dbl> …
## $ designer_IKEA.of.Sweden.Andreas.Fredriksson <dbl> …
## $ designer_IKEA.of.Sweden.Andreas.Fredriksson.Ehlén.Johansson <dbl> …
## $ designer_IKEA.of.Sweden.Anna.Efverlund <dbl> …
## $ designer_IKEA.of.Sweden.Carina.Bengs <dbl> …
## $ designer_IKEA.of.Sweden.Carl.Öjerstam <dbl> …
## $ designer_IKEA.of.Sweden.Carl.Öjerstam.Mia.Lagerman <dbl> …
## $ designer_IKEA.of.Sweden.Chenyi.Ke <dbl> …
## $ designer_IKEA.of.Sweden.David.Wahl <dbl> …
## $ designer_IKEA.of.Sweden.David.Wahl.Lisa.Hilland <dbl> …
## $ designer_IKEA.of.Sweden.E.Strandmark <dbl> …
## $ designer_IKEA.of.Sweden.E.Strandmark.Carina.Bengs <dbl> …
## $ designer_IKEA.of.Sweden.Ebba.Strandmark <dbl> …
## $ designer_IKEA.of.Sweden.Ebba.Strandmark.Ehlén.Johansson <dbl> …
## $ designer_IKEA.of.Sweden.Ehlén.Johansson <dbl> …
## $ designer_IKEA.of.Sweden.Ehlén.Johansson.Andreas.Fredriksson <dbl> …
## $ designer_IKEA.of.Sweden.Ehlén.Johansson.Ebba.Strandmark <dbl> …
## $ designer_IKEA.of.Sweden.Ehlén.Johansson.Francis.Cayouette <dbl> …
## $ designer_IKEA.of.Sweden.Ehlén.Johansson.K.Hagberg.M.Hagberg <dbl> …
## $ designer_IKEA.of.Sweden.Ehlén.Johansson.Ola.Wihlborg <dbl> …
## $ designer_IKEA.of.Sweden.Eva.Lilja.Löwenhielm <dbl> …
## $ designer_IKEA.of.Sweden.Eva.Lilja.Löwenhielm.K.Hagberg.M.Hagberg <dbl> …
## $ designer_IKEA.of.Sweden.Francis.Cayouette <dbl> …
## $ designer_IKEA.of.Sweden.Francis.Cayouette.Ehlén.Johansson <dbl> …
## $ designer_IKEA.of.Sweden.Fredriksson.L.Löwenhielm.Hilland <dbl> …
## $ designer_IKEA.of.Sweden.Fredriksson.L.Löwenhielm.Hilland.Ehlén.Johansson <dbl> …
## $ designer_IKEA.of.Sweden.Gillis.Lundgren <dbl> …
## $ designer_IKEA.of.Sweden.Gustav.Carlberg <dbl> …
## $ designer_IKEA.of.Sweden.Henrik.Preutz <dbl> …
## $ designer_IKEA.of.Sweden.Johanna.Asshoff <dbl> …
## $ designer_IKEA.of.Sweden.John.Jonas.Petrus.Paul.Caroline.David.Wahl <dbl> …
## $ designer_IKEA.of.Sweden.Jomi.Evers <dbl> …
## $ designer_IKEA.of.Sweden.Jon.Karlsson <dbl> …
## $ designer_IKEA.of.Sweden.Jonas.Hultqvist <dbl> …
## $ designer_IKEA.of.Sweden.K.Hagberg.M.Hagberg <dbl> …
## $ designer_IKEA.of.Sweden.K.Hagberg.M.Hagberg.Ehlén.Johansson <dbl> …
## $ designer_IKEA.of.Sweden.Karl.Malmvall <dbl> …
## $ designer_IKEA.of.Sweden.L.Hilland <dbl> …
## $ designer_IKEA.of.Sweden.L.Hilland.Lisa.Hilland <dbl> …
## $ designer_IKEA.of.Sweden.Marcus.Arvonen <dbl> …
## $ designer_IKEA.of.Sweden.Marcus.Arvonen.Carl.Öjerstam <dbl> …
## $ designer_IKEA.of.Sweden.Nike.Karlsson <dbl> …
## $ designer_IKEA.of.Sweden.Nike.Karlsson.Eva.Lilja.Löwenhielm <dbl> …
## $ designer_IKEA.of.Sweden.Noboru.Nakamura <dbl> …
## $ designer_IKEA.of.Sweden.Ola.Wihlborg <dbl> …
## $ designer_IKEA.of.Sweden.Ola.Wihlborg.Ehlén.Johansson <dbl> …
## $ designer_IKEA.of.Sweden.Ola.Wihlborg.Ehlén.Johansson.Ebba.Strandmark <dbl> …
## $ designer_IKEA.of.Sweden.Paulin.Machado <dbl> …
## $ designer_IKEA.of.Sweden.Sarah.Fager <dbl> …
## $ designer_IKEA.of.Sweden.Synnöve.Mork.Ola.Wihlborg <dbl> …
## $ designer_IKEA.of.Sweden.Tina.Christensen <dbl> …
## $ designer_IKEA.of.Sweden.Tom.Dixon <dbl> …
## $ designer_IKEA.of.Sweden.Tord.Björklund <dbl> …
## $ designer_IKEA.of.Sweden.Virgil.Abloh <dbl> …
## $ designer_J.Asshoff.H.Brogård <dbl> …
## $ designer_J.Fritzdorf.J.Feldman.J.Hedberg <dbl> …
## $ designer_J.Karlsson.N.Karlsson <dbl> …
## $ designer_J.Karlsson.N.Karlsson.Maja.Ganszyniec <dbl> …
## $ designer_J.Karlsson.N.Karlsson.Nike.Karlsson <dbl> …
## $ designer_J.Karlsson.W.Chong <dbl> …
## $ designer_J.Löfgren.J.Pettersson <dbl> …
## $ designer_J.Löfgren.J.Pettersson.Marcus.Arvonen <dbl> …
## $ designer_J.Löfgren.J.Pettersson.S.Lanneskog.J.Marnell <dbl> …
## $ designer_Johan.Kroon <dbl> …
## $ designer_Johanna.Asshoff <dbl> …
## $ designer_Johanna.Asshoff.Gustav.Carlberg <dbl> …
## $ designer_Johanna.Asshoff.IKEA.of.Sweden <dbl> …
## $ designer_Johanna.Asshoff.IKEA.of.Sweden.Gustav.Carlberg <dbl> …
## $ designer_Johanna.Asshoff.Jomi.Evers <dbl> …
## $ designer_John.Jonas.Petrus.Paul.Caroline <dbl> …
## $ designer_John.Jonas.Petrus.Paul.Caroline.Lisa.Norinder <dbl> …
## $ designer_Jomi.Evers <dbl> …
## $ designer_Jomi.Evers.IKEA.of.Sweden <dbl> …
## $ designer_Jon.Karlsson <dbl> …
## $ designer_Jon.Karlsson.David.Wahl <dbl> …
## $ designer_Jon.Karlsson.IKEA.of.Sweden <dbl> …
## $ designer_Jon.Karlsson.IKEA.of.Sweden.Eva.Lilja.Löwenhielm <dbl> …
## $ designer_Jon.Karlsson.John.Jonas.Petrus.Paul.Caroline <dbl> …
## $ designer_Jonas.Hultqvist <dbl> …
## $ designer_Jonas.Hultqvist.IKEA.of.Sweden <dbl> …
## $ designer_Jonas.Hultqvist.IKEA.of.Sweden.Eva.Lilja.Löwenhielm <dbl> …
## $ designer_Jooyeon.Lee <dbl> …
## $ designer_K.Hagberg.M.Hagberg <dbl> …
## $ designer_K.Hagberg.M.Hagberg.Ehlén.Johansson.IKEA.of.Sweden <dbl> …
## $ designer_K.Hagberg.M.Hagberg.Francis.Cayouette <dbl> …
## $ designer_K.Hagberg.M.Hagberg.Gillis.Lundgren <dbl> …
## $ designer_K.Hagberg.M.Hagberg.IKEA.of.Sweden <dbl> …
## $ designer_K.Hagberg.M.Hagberg.J.Löfgren.J.Pettersson <dbl> …
## $ designer_K.Hagberg.M.Hagberg.John.Jonas.Petrus.Paul.Caroline <dbl> …
## $ designer_K.Hagberg.M.Hagberg.Marcus.Arvonen <dbl> …
## $ designer_K.Hagberg.M.Hagberg.Mia.Lagerman <dbl> …
## $ designer_K.Malmvall.E.Lilja.Löwenhielm <dbl> …
## $ designer_Karl.Malmvall <dbl> …
## $ designer_Karl.Malmvall.Ehlén.Johansson <dbl> …
## $ designer_L.Hilland.J.Karlsson <dbl> …
## $ designer_Lars.Norinder <dbl> …
## $ designer_Lisa.Hilland <dbl> …
## $ designer_Lisa.Hilland.IKEA.of.Sweden.David.Wahl <dbl> …
## $ designer_Lisa.Norinder <dbl> …
## $ designer_Lisa.Norinder.A.Fredriksson.J.Hultqvist.W.Chong <dbl> …
## $ designer_Lisa.Norinder.David.Wahl <dbl> …
## $ designer_Lisa.Norinder.John.Jonas.Petrus.Paul.Caroline <dbl> …
## $ designer_Lisa.Norinder.Marcus.Arvonen <dbl> …
## $ designer_Lisel.Garsveden <dbl> …
## $ designer_M.Kjelstrup.A.Östgaard <dbl> …
## $ designer_Maja.Ganszyniec <dbl> …
## $ designer_Maja.Ganszyniec.J.Karlsson.N.Karlsson <dbl> …
## $ designer_Maja.Ganszyniec.K.Hagberg.M.Hagberg <dbl> …
## $ designer_Malin.Unnborn <dbl> …
## $ designer_Marcus.Arvonen <dbl> …
## $ designer_Marcus.Arvonen.Andreas.Fredriksson <dbl> …
## $ designer_Marcus.Arvonen.IKEA.of.Sweden <dbl> …
## $ designer_Marcus.Arvonen.Lisa.Norinder <dbl> …
## $ designer_Marcus.Arvonen.Nike.Karlsson <dbl> …
## $ designer_Maria.Vinka <dbl> …
## $ designer_Mia.Lagerman <dbl> …
## $ designer_Mia.Lagerman.Ehlén.Johansson <dbl> …
## $ designer_Mia.Lagerman.Francis.Cayouette <dbl> …
## $ designer_Mia.Lagerman.IKEA.of.Sweden.Chris.Martin <dbl> …
## $ designer_Mia.Lagerman.K.Hagberg.M.Hagberg <dbl> …
## $ designer_Mia.Lagerman.Mikael.Warnhammar <dbl> …
## $ designer_Mia.Lagerman.S.Lanneskog.J.Marnell <dbl> …
## $ designer_Mikael.Axelsson <dbl> …
## $ designer_Mikael.Axelsson.IKEA.of.Sweden <dbl> …
## $ designer_Mikael.Warnhammar <dbl> …
## $ designer_Mikael.Warnhammar.A.Fredriksson.J.Hultqvist.W.Chong <dbl> …
## $ designer_Mikael.Warnhammar.Mia.Lagerman <dbl> …
## $ designer_Monika.Mulder <dbl> …
## $ designer_Monika.Mulder.IKEA.of.Sweden <dbl> …
## $ designer_Nada.Debs <dbl> …
## $ designer_Nicholai.Wiig.Hansen <dbl> …
## $ designer_Niels.Gammelgaard <dbl> …
## $ designer_Nike.Karlsson <dbl> …
## $ designer_Nike.Karlsson.Francis.Cayouette <dbl> …
## $ designer_Nike.Karlsson.IKEA.of.Sweden <dbl> …
## $ designer_Nike.Karlsson.J.Karlsson.N.Karlsson <dbl> …
## $ designer_Nike.Karlsson.Maja.Ganszyniec <dbl> …
## $ designer_Nike.Karlsson.Mikael.Axelsson <dbl> …
## $ designer_Noboru.Nakamura <dbl> …
## $ designer_Noboru.Nakamura.IKEA.of.Sweden <dbl> …
## $ designer_Ola.Wihlborg <dbl> …
## $ designer_Ola.Wihlborg.Ehlén.Johansson <dbl> …
## $ designer_Ola.Wihlborg.IKEA.of.Sweden <dbl> …
## $ designer_Ola.Wihlborg.IKEA.of.Sweden.Synnöve.Mork <dbl> …
## $ designer_Ola.Wihlborg.Lisa.Norinder <dbl> …
## $ designer_Ola.Wihlborg.S.Lanneskog.J.Marnell <dbl> …
## $ designer_Ola.Wihlborg.Synnöve.Mork.IKEA.of.Sweden <dbl> …
## $ designer_Olle.Lundberg <dbl> …
## $ designer_Paulin.Machado <dbl> …
## $ designer_S.Edholm.L.Ullenius <dbl> …
## $ designer_S.Fager.J.Jelinek <dbl> …
## $ designer_S.Fager.J.Karlsson <dbl> …
## $ designer_S.Holmbäck.U.Nordentoft <dbl> …
## $ designer_S.Lanneskog.J.Marnell <dbl> …
## $ designer_S.Lanneskog.J.Marnell.IKEA.of.Sweden <dbl> …
## $ designer_S.Lanneskog.J.Marnell.J.Löfgren.J.Pettersson <dbl> …
## $ designer_S.Lanneskog.J.Marnell.Mia.Lagerman <dbl> …
## $ designer_S.Lanneskog.J.Marnell.Ola.Wihlborg <dbl> …
## $ designer_Sarah.Fager <dbl> …
## $ designer_Sarah.Fager.IKEA.of.Sweden <dbl> …
## $ designer_Studio.Copenhagen <dbl> …
## $ designer_Studio.Copenhagen.Mia.Lagerman <dbl> …
## $ designer_Synnöve.Mork <dbl> …
## $ designer_Synnöve.Mork.Ola.Wihlborg.IKEA.of.Sweden <dbl> …
## $ designer_T.Christensen.K.Legaard <dbl> …
## $ designer_T.Winkel.T.Jacobsen <dbl> …
## $ designer_Thomas.Sandell <dbl> …
## $ designer_Tina.Christensen <dbl> …
## $ designer_Tina.Christensen.Jomi.Evers <dbl> …
## $ designer_Tom.Dixon <dbl> …
## $ designer_Tom.Dixon.IKEA.of.Sweden <dbl> …
## $ designer_Tord.Björklund <dbl> …
## $ designer_Tord.Björklund.IKEA.of.Sweden <dbl> …
## $ designer_Virgil.Abloh <dbl> …
## $ designer_Wiebke.Braasch <dbl> …
## $ sellable_online <fct> …
xgboost_spec <-
boost_tree(
trees = tune(),
min_n = tune(),
tree_depth = tune(),
learn_rate = tune(),
loss_reduction = tune(),
sample_size = tune()
) %>%
set_mode("classification") %>%
set_engine("xgboost")
xgboost_workflow <-
workflow() %>%
add_recipe(xgboost_recipe) %>%
add_model(xgboost_spec)
doParallel::registerDoParallel()
set.seed(65743)
xgboost_tune <-
tune_grid(
xgboost_workflow,
resamples = data_cv,
grid = 5,
metrics = metric_set(accuracy, roc_auc),
control = control_grid(save_pred = TRUE)
)
collect_predictions(xgboost_tune) %>%
roc_curve(sellable_online, .pred_TRUE) %>%
autoplot()
xgboost_last <- xgboost_workflow %>%
finalize_workflow(select_best(xgboost_tune, metric = "accuracy")) %>%
last_fit(data_split)
collect_metrics(xgboost_last)
## # A tibble: 3 × 4
## .metric .estimator .estimate .config
## <chr> <chr> <dbl> <chr>
## 1 accuracy binary 0.995 pre0_mod0_post0
## 2 roc_auc binary 0.973 pre0_mod0_post0
## 3 brier_class binary 0.00353 pre0_mod0_post0
collect_predictions(xgboost_last) %>%
yardstick::conf_mat(sellable_online, .pred_class)
## Truth
## Prediction TRUE FALSE
## TRUE 916 2
## FALSE 3 3
library(vip)
##
## Attaching package: 'vip'
## The following object is masked from 'package:utils':
##
## vi
xgboost_fit <- xgboost_workflow %>%
finalize_workflow(select_best(xgboost_tune, metric = "accuracy")) %>%
fit(data_train)
xgboost_fit %>%
extract_fit_parsnip() %>%
vip()
The previous model had accuracy of 0.851 and AUC of 0.753.
Overall, the best performing model was the one that included YeoJohnson transformation without PCA. PCA reduced the number of features, but it did not improve model performance, so the simpler model is preferred.