R 기초; 그래픽 - 그래프 생성 및 저장
str(cars)
plot(cars$speed, cars$dist)
plot(cars)
# 기니피그의 이빨 길이와 비타민C 보충제의원과의 관계를 기록한 실험 데이터
str(ToothGrowth)
plot(ToothGrowth,$supp, ToothGrowth$len)
str(iris)
plot(iris[, 1:4])
str(nhtemp)
plot(nhtemp)
# 버클리 대학의 입학 허가 여부를 성별 6개의 학과 그리고 합격 불합격을 테이블 형식으로 데이터
str(UCBAdmissions)
plot(UCBAdmissions)
str(faithful)
faithful.lm <- lm(waiting ~ eruptions, data=faithful)
class(faithful.lm)
plot(faithful.lm)
plot(faithful)
list.files(pattern="myplot.jpeg")
library(pander)
openFileInOS("myplot.jpeg")
windows(width=12, height=8)
plot(faithful)
savePlot(filename="myplot", type="pdf")
list.files(pattern="myplot.pdf")
library(pander)
openFilesInOS("myplot.pdf")
?png
?postscript
png("myplot.png", width=648, height=432)
plot(faithful)
dev.off()
list.files(pattern="myplot.png")
library(pander)
openFileInOS("myplot.png")
'공부 > R Programming' 카테고리의 다른 글
R 기초; 그래픽 - 그래프 배치 (0) | 2021.01.24 |
---|---|
R 기초; 그래픽 - 그래프 패러미터 설정 (0) | 2021.01.23 |
R 기초; 고수준 및 저수준 그래픽 함수 (0) | 2021.01.23 |
R 기초; 형태 변환2 - tidyr (0) | 2021.01.23 |
R 기초; 형태 변환1 - reshape2 (0) | 2021.01.23 |
댓글