forked from rdpeng/ExData_Plotting1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
plot2.R
59 lines (43 loc) · 1.85 KB
/
plot2.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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
#################################################################################
# Library Load Section.
# Library being used : lubridate
#################################################################################
require(lubridate)
#################################################################################
# Data Reading Section.
# This section is to read raw data of household power consumption.
# Data will be used is only from the dates 2007-02-01 and 2007-02-02.
#################################################################################
#Read the data from text file then subset only from the dates
#2007-02-01 and 2007-02-02
dataset <- read.table(file = "household_power_consumption.txt",
sep = ";",
header = TRUE,
na.strings = "?" ,
stringsAsFactors = FALSE)
dataset <- subset(dataset,
dataset$Date == "1/2/2007" | dataset$Date == "2/2/2007")
#Create a new DateTime column from combination of Date & Time column
#in dataset
datetime <- strptime(paste(dataset$Date,dataset$Time), "%d/%m/%Y %H:%M:%S")
dataset <- cbind(datetime, dataset)
names(dataset)[1] <- "DateTime"
#Parse Date and Time string into correspondingg Data and Time class
dataset$Date <- dmy(dataset$Date)
dataset$Time <- hms(dataset$Time)
#Remove unnecesary temporary variable
rm(datetime)
#################################################################################
# Data Plotting Section.
# This section is to create a data plot and send the output to PNG file device
#################################################################################
png(file = "plot2.png")
with(dataset,
plot(DateTime,
Global_active_power,
type = "l",
xlab = "",
ylab = "Global Active Power (kilowatts)"
)
)
dev.off()