Coûts de production des entreprises non financières (trimestriel) - t_coutprodenf_val

Données - INSEE

Comptes trimestriels : décomposition des coûts unitaires de production de l’ensemble des entreprises non financières (rapportés à la production en volume).

Structure

Coûts unitaires (base 100 au 1er point)

Code
`t_coutprodenf_val` |>
  filter(variable %in% c("D1/P1vol", "P2/P1vol", "(D29-D39)/P1vol", "(P2+D1+D29-D39)/P1vol")) |>
  group_by(variable) |> arrange(date) |> mutate(idx = 100 * value / value[1]) |> ungroup() |>
  ggplot() + theme_minimal() + xlab("") + ylab("Coût unitaire (base 100)") +
  geom_line(aes(x = date, y = idx, color = variable)) +
  scale_x_date(date_breaks = "10 years", date_labels = "%Y") +
  theme(legend.title = element_blank(), legend.position = "bottom") +
  guides(color = guide_legend(nrow = 2))

Productivité du travail (production en volume par emploi)

Code
`t_coutprodenf_val` |>
  filter(variable == "P1vol / emploi") |>
  arrange(date) |> mutate(g = value / lag(value, 4) - 1) |>
  ggplot() + theme_minimal() + xlab("") + ylab("Glissement annuel de la productivité") +
  geom_hline(yintercept = 0, color = "grey60") +
  geom_line(aes(x = date, y = g)) +
  scale_x_date(date_breaks = "10 years", date_labels = "%Y") +
  scale_y_continuous(labels = percent_format(accuracy = 1))

Derniers trimestres

Code
`t_coutprodenf_val` |>
  filter(date >= last_d %m-% months(24)) |>
  mutate(value = round(value, 3)) |>
  tidyr::pivot_wider(names_from = variable, values_from = value) |>
  arrange(desc(date)) |>
  print_table_conditional()
date P1prix (P2+D1+D29-D39)/P1vol P2/P1vol (D29-D39)/P1vol D1/P1vol D11/emploi P1vol / emploi D1/D11
2026-04-01 1.21 1.03 0.72 0.01 0.30 11.01 48.50 1.33
2026-01-01 1.19 1.01 0.70 0.01 0.30 10.96 48.37 1.33
2025-10-01 1.19 1.00 0.70 0.01 0.30 10.89 48.32 1.32
2025-07-01 1.19 1.01 0.70 0.01 0.30 10.84 48.09 1.32
2025-04-01 1.19 1.01 0.70 0.01 0.30 10.79 47.70 1.32
2025-01-01 1.20 1.01 0.70 0.01 0.30 10.73 47.56 1.32
2024-10-01 1.19 1.01 0.70 0.01 0.30 10.67 47.40 1.32
2024-07-01 1.19 1.00 0.69 0.01 0.30 10.61 47.36 1.32
2024-04-01 1.18 1.00 0.70 0.01 0.29 10.58 47.24 1.32