Coûts de production dans l’industrie manufacturière (trimestriel) - t_coutprodmanuf_val

Données - INSEE

Comptes trimestriels : décomposition des coûts unitaires de production dans l’industrie manufacturière (rapportés à la production en volume).

Structure

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

Code
`t_coutprodmanuf_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_coutprodmanuf_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_coutprodmanuf_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 0.01 1.09 0.87 0.01 0.21 11.90 78.84 1.38
2026-01-01 0.01 1.06 0.84 0.01 0.21 11.86 78.65 1.37
2025-10-01 0.01 1.05 0.84 0.01 0.21 11.80 78.08 1.37
2025-07-01 0.01 1.05 0.84 0.01 0.21 11.78 78.12 1.37
2025-04-01 0.01 1.06 0.84 0.01 0.21 11.73 77.19 1.37
2025-01-01 0.01 1.06 0.84 0.01 0.21 11.67 76.73 1.37
2024-10-01 0.01 1.05 0.84 0.01 0.21 11.55 76.11 1.36
2024-07-01 0.01 1.05 0.83 0.01 0.21 11.47 76.06 1.37
2024-04-01 0.01 1.04 0.83 0.01 0.21 11.49 76.42 1.36