R기초; R 기초 - ggplot2 그래픽5 - 테마
R기초; R 기초 - ggplot2 그래픽5 - 테마 library(ggplot2) library(car) str(Salaries) ggplot(Salaries, aes(x=yrs.since.phd, y=salary, color=rank, shape=rank)) + geom_point() + facet_grid(. ~ sex) + theme_gray() ?theme_gray theme() ggplot(Salaries, aes(x=rank, y=salary, fill=sex)) + geom_boxplot() + labs(title="Salary by Rank and Sex", x="Rank", y="Salary") + theme(plot.title=element_text(face="bold.italic",..
2021. 1. 24.
R 기초 - ggplot2 그래픽4 - 그래프 옵션
R 기초 - ggplot2 그래픽4 - 그래프 옵션 library(ggplot2) library(car) str(Salaries) ggplot(Salaries, aes(x=rank, y=salary, fill=sex)) + geom_boxplot() + scale_x_discrete(breaks=c("AsstProf", "AssocProf", "Prof"), labels=c("Assistant Professor", "Associate Professor", "Professor")) + scale_y_continuous(breaks=c(50000, 100000, 150000, 200000), labels=c("$50k", "$100k", "$150k", "$200k") scale_x_discrete() sc..
2021. 1. 24.
R 기초; 그래픽 - 그래프 배치
R 기초; 그래픽 - 그래프 배치 plot(faithful, pch=19, col="blue", main="Old Faithful Geyser", sub="Yellowstone National Park", xlab="Eruption time (minutes)", ylab="waiting time (minutes)") plot(pressure, type="l", col="red", main="Temperature vs. Pressure") plot(LakeHuron, col="green", lwd=2, main="Lake Huron Level") plot(ToothGrowth$supp, ToothGrowth$len, col="orange", main="Tooth Growth of Guinea Pig") w..
2021. 1. 24.
R 기초; 그래픽 - 그래프 패러미터 설정
R 기초; 그래픽 - 그래프 패러미터 설정 plot(faithful) plot(faithful, main="Old Faithful Geyser", sub="Yellowstone National Park", xlab="Eruptio time (minutes)", ylab="Waiting time (minutes)") ?par plot(faithful, las=0) plot(faithful, las=1) plot(faithful, las=2) plot(faithful, las=3) plot(faithful, bty="o") plot(faithful, bty="n") plot(faithful, bty="l") plot(faithful, bty="]") # 심볼과 선 plot(faithful, pch=3) pl..
2021. 1. 23.