forked from rdpeng/ExData_Plotting1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplot3.R
29 lines (25 loc) · 922 Bytes
/
plot3.R
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# By Richard Wheeler
# Script for C4W1 project
# plot3.R
if(!exists("getPlotData", mode="function")) source("getPlotData.R")
plot3 <- function(dispOnly = FALSE, pdata = NULL) {
boxtype <- "o"
textwidth <- 600
if(dispOnly == FALSE) {
pdata <- getPlotData()
} else {
boxtype <- "n"
textwidth <- 1050
}
plot(pdata$Sub_metering_1, type="n", xaxt="n", ylab="Energy sub metering")
lines(pdata$Sub_metering_1,type="l")
lines(pdata$Sub_metering_2,type="l",col="red")
lines(pdata$Sub_metering_3,type="l",col="blue")
axis(1,at=c(0,1440,2880),labels=c("Thu","Fri","Sat"))
legend("topright",c("Sub_metering_1","Sub_metering_2","Sub_metering_3"),col=c("black","red","blue"),lty=1,
text.width = textwidth, cex=.75, y.intersp = .75, bty = boxtype)
if(dispOnly == FALSE) {
dev.copy(png,file="plot3.png")
dev.off()
}
}#plot3()