ggplot에서 면 순서 수정
ggplot에서 면 순서 수정 데이터: df )을 사용하여 위 데이터의 막대 그래프를 그려야 합니다.typey축 ->amount에 따라 그룹을 짓다.size) 다음 코드를 사용했을 때 변수가 표시되지 않습니다.type뿐만 아니라size데이터에 표시된 순서대로그림을 보세요.저는 그것을 위해 아래의 코드를 사용했습니다. ggplot(df, aes(type, amount , fill=type, group=type, shape=type, facets=size)) + geom_col(width=0.5, position = position_dodge(width=0.6)) + facet_grid(.~size) + theme_bw() + scale_fill_manual(values = c("darkblue","stee..