ggplot으로 하다 보면 각 축 이름 (제목이나 안에 들어간 텍스트)의 크기나 색상, 혹은 모양이 맘에 안 들 때가 있습니다. 이것을 조정하는 방법은 theme()안에 있는 axis.text.x, axis.text.y, axis.title.x, axis.title.y 옵션을 이용한 다음 element_text를 사용하면 편합니다. theme(axis.text.x=element_text(color="...", size="...", angle="...", hjust="...", vjust="...", face="..."), (axis.text.y=element_text(...), (axis.title.x=element_text(...), (axis.title.y=element_text(...)) 그런데 이..