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.
R ) 독학 :: data 시각화 ggplot2 히스토그램(histogram), 박스플랏 (box plot)
오늘은 시각화에 대해 공부한것을 공유하려고 합니다. 먼저 히스토그램을 그려보겠습니다. ggplot( iris, aes(x=Sepal.Length)) + geom_histogram(fill="#F8766D", colour="black", binwidth=0.2)+ stat_bin(geom='text', color='black', aes(label=..count..), position=position_stack(vjust = 0.5),binwidth=0.2) 히스토 그램을 그리고 여러 옵션을 넣어보았습니다. ggplot( iris, aes(x=Sepal.Length)) + #data넣기 geom_histogram(fill="#F8766D", colour="black", binwidth=0.2)+ #히스토그램..
2022. 4. 29.