forked from rdpeng/ExData_Plotting1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplot3.R
17 lines (12 loc) · 836 Bytes
/
plot3.R
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
library("dplyr")
dataSet <- read.csv("household_power_consumption.txt",sep=';',stringsAsFactors=FALSE)
dataSet$Date1 <- as.POSIXct(strptime(paste(dataSet$Date , dataSet$Time, sep=" "), "%d/%m/%Y %H:%M:%S"))
dataSet <- filter(dataSet, Date1 >= "2007-02-01" & Date1 <= "2007-02-02" )
png(filename = "plot3.png", width = 480, height = 480)
r <- as.POSIXct(range(dataSet$Date1))
plot(dataSet$Sub_metering_1~dataSet$Date1, type="l", ylab="Energy sub metering", xlab="", xaxt="n")
lines(dataSet$Sub_metering_2~dataSet$Date1, type="l", xaxt="n" ,col="red")
lines(dataSet$Sub_metering_3~dataSet$Date1, type="l", xaxt="n" , col="blue")
axis(side=1,at=seq(r[1], r[2], by="day"), labels = weekdays(r, abbreviate = TRUE) )
legend("topright", c("Sub_metering_1","Sub_metering_2","Sub_metering_3"), col=c("black","red","blue"), lty=1)
dev.off()