我有这个 df:estudios_intubacion
estudio_completo numero
<chr> <int>
1 COMPLETO 2838
2 INCOMPLETO 147
而且我试图用 estudio_completo (COMPLETO 和 INCOMPLETO)这两个变量在 x 轴和 'n' 在 y 轴上只用 ggplot 绘制一个 bar/col。我以多种方式尝试了位置“堆栈”和“填充”,但我不断得到两个没有比例的单独条。
grafico_intubacion <- ggplot(estudios_intubacion,
aes (x = estudio_completo, fill = estudio_completo))+
geom_bar(position = "stack") +
labs(title = "Tasa de intubación cecal",
x = "Estudio",
y = "Cantidad de estudios",
fill = "Estudio" ) +
scale_fill_manual(values = c("#C7CEEA", "#FF9AA2"))