본문 바로가기
공부/R Programming

R 기초; 그래픽 - 그래프 생성 및 저장

by 혼밥맨 2021. 1. 23.
반응형

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

?pdf

?postscript

 

png("myplot.png", width=648, height=432)

plot(faithful)

dev.off()

 

list.files(pattern="myplot.png")

library(pander)

openFileInOS("myplot.png")

 

 

반응형

댓글