Last observation: 2020 (N = 4627)
First observation: 1988 (N = 1449)
Last data update: 14 aoû 2026, 20:12. Last compile: 18 aoû 2026, 01:13
Data - Eurostat
Last observation: 2020 (N = 4627)
First observation: 1988 (N = 1449)
Last data update: 14 aoû 2026, 20:12. Last compile: 18 aoû 2026, 01:13
hbs_str_t226 |>
filter(geo == "FR",
deg_urb == "DEG1",
coicop %in% c("CP01", "CP04", "CP07", "CP09")) |>
year_to_date() |>
mutate(values = values/1000) |>
ggplot() + geom_line(aes(x = date, y = values, color = Coicop)) +
geom_point(aes(x = date, y = values, color = Coicop)) +
theme_minimal() +
scale_x_date(breaks = as.Date(paste0(seq(1985, 2100, 5), "-01-01")),
labels = date_format("%Y")) +
theme(legend.position = "right") +
xlab("") + ylab("Share of household expenditure, Cities (France)") +
scale_y_continuous(labels = scales::percent_format(accuracy = 1))
hbs_str_t226 |>
filter(geo %in% c("FR", "DE", "IT"),
time == "2015",
coicop == "CP01",
deg_urb %in% c("DEG1", "DEG2", "DEG3")) |>
mutate(values = round(values/1000, 3)) |>
select(Geo, Deg_urb, values) |>
spread(Deg_urb, values) |>
print_table_conditional()| Geo | Cities | Rural areas | Towns and suburbs |
|---|---|---|---|
| France | 0.135 | 0.153 | 0.145 |
| Germany | 0.115 | 0.117 | 0.117 |
| Italy | 0.169 | 0.196 | 0.180 |