- Bağlantıyı al
- X
- E-posta
- Diğer Uygulamalar
- Bağlantıyı al
- X
- E-posta
- Diğer Uygulamalar
ggplot2() için öncelikle "tidyverse" paketini yüklemelisiniz.
library(tidyverse)
college <- read_csv('http://672258.youcanlearnit.net/college.csv')
ggplot(data=college) +
geom_bar(mapping=aes(x=region, fill=control)) +
theme(panel.background=element_blank()) +
theme(plot.background=element_blank()) +
xlab("Region") +
ylab("Number of Schools") +
ylim(0,500)
- Bağlantıyı al
- X
- E-posta
- Diğer Uygulamalar
Yorumlar
Yorum Gönder