R ) 독학 :: 산점도 알아보기 scatter plot
산점도 그리는것에 대해 공부한것을 기록하려고 합니다. ggplot(data=iris, aes(x=Sepal.Length, y=Sepal.Width,color=Species))+ geom_point(shape=17, size=3)+ ggtitle("Scatter Sepal_Length,Width")+ geom_text(aes(label=Species, size=2, vjust=-1, hjust=0)) 위와 같이 코드를 작성하면 Species별로 색을 나눠 입힐 수 있습니다. 또한 scatter plot에 있는 point의 모양도 바꿀 수 있습니다. 모양은 아래와 같이 정할 수 있습니다. ggplot(data=iris, aes(x=Sepal.Length, y=Sepal.Width,shape=Species,c..
2022. 5. 8.
R ) 독학 :: data 시각화 ggplot2 히스토그램 (histogram), 박스 플랏(boxplot) in r -2 플랏 겹치기 플랏 옵션 multi plot, plot option
시각화 공부를 하다가 참고 할만한걸 찾아서 올려놓아보려고 합니다. my_df % select(value) %>% ggplot(aes(x="", y = value)) + geom_boxplot(fill = "lightblue", color = "black") + coord_flip() + theme_classic() + xlab("") + theme(axis.text.y=element_blank(), axis.ticks.y=element_blank()) my_df %>% select(id, value) %>% ggplot() + geom_histogram(aes(x = value, y = (..count..)/sum(..count..)), position = "identity", binwidth = 1, ..
2022. 5. 5.