Last observation: Q2 2026 (N = 16)
First observation: Q1 1949 (N = 16)
Last data update: 03 sept. 2026, 05:31
Last compile: 24 sept. 2026, 01:50
Comptes trimestriels : partage du revenu des facteurs — rémunération des salariés (D1), impôts sur la production (D2), subventions (D3) — au sein de la valeur ajoutée / du PIB.
`t_revfact_val` |>
filter(variable %in% c("PIB", "D1", "D11", "D2", "D29", "D3")) |>
ggplot() + theme_minimal() + xlab("") + ylab("Mds € (trimestriel)") +
geom_line(aes(x = date, y = value, color = variable)) +
scale_x_date(date_breaks = "10 years", date_labels = "%Y") +
scale_y_log10() +
theme(legend.title = element_blank(), legend.position = "bottom") +
guides(color = guide_legend(nrow = 2))
`t_revfact_val` |>
filter(variable %in% c("D1", "PIB")) |>
select(date, variable, value) |>
tidyr::pivot_wider(names_from = variable, values_from = value) |>
ggplot() + theme_minimal() + xlab("") + ylab("Rémunération des salariés / PIB") +
geom_line(aes(x = date, y = D1 / PIB)) +
scale_x_date(date_breaks = "10 years", date_labels = "%Y") +
scale_y_continuous(labels = percent_format(accuracy = 1))
`t_revfact_val` |>
filter(date >= last_d %m-% months(18)) |>
mutate(value = round(value, 1)) |>
tidyr::pivot_wider(names_from = variable, values_from = value) |>
arrange(desc(date)) |>
print_table_conditional()| date | PIB | B1 | D11 | D121 | D122 | D1 | D211 | D212 | D214 | D29 | D2 | D31 | D39 | D3 | B2...16 | B2...17 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2026-04-01 | 759.7 | 676.3 | 285.7 | 86.2 | 18.7 | 390.6 | 53.2 | 0.9 | 32.9 | 33.7 | 120.6 | -3.5 | -12.5 | -16.0 | 164.9 | 264.5 |
| 2026-01-01 | 756.6 | 673.7 | 284.7 | 85.7 | 18.6 | 389.1 | 52.5 | 0.9 | 33.0 | 34.1 | 120.5 | -3.5 | -12.6 | -16.0 | 164.9 | 263.0 |
| 2025-10-01 | 755.7 | 673.1 | 283.6 | 84.3 | 18.6 | 386.5 | 52.5 | 0.9 | 32.7 | 33.1 | 119.2 | -3.5 | -12.6 | -16.1 | 168.1 | 266.1 |
| 2025-07-01 | 750.6 | 668.4 | 282.8 | 83.3 | 18.5 | 384.6 | 52.4 | 0.9 | 32.6 | 33.2 | 119.0 | -3.5 | -12.6 | -16.1 | 166.2 | 263.1 |
| 2025-04-01 | 745.3 | 663.7 | 282.1 | 83.0 | 18.5 | 383.6 | 52.1 | 0.9 | 32.2 | 33.1 | 118.3 | -3.6 | -12.6 | -16.2 | 163.0 | 259.6 |
| 2025-01-01 | 743.6 | 663.3 | 280.8 | 82.3 | 18.4 | 381.5 | 52.2 | 0.9 | 30.8 | 33.4 | 117.3 | -3.7 | -12.3 | -16.0 | 164.5 | 260.8 |
| 2024-10-01 | 739.4 | 661.0 | 280.0 | 81.2 | 18.2 | 379.4 | 52.0 | 0.9 | 29.8 | 33.0 | 115.6 | -4.3 | -12.3 | -16.6 | 164.7 | 260.9 |