forked from rdpeng/ExData_Plotting1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplot1.R
21 lines (18 loc) · 781 Bytes
/
plot1.R
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Sys.setlocale("LC_ALL","en_US")
library(sqldf)
if (!file.exists("household_power_consumption.txt")) {
download.file("https://d396qusza40orc.cloudfront.net/exdata%2Fdata%2Fhousehold_power_consumption.zip",
"exdata-data-household_power_consumption.zip", method="curl")
unzip("exdata-data-household_power_consumption.zip")
}
## read and cleanup data
df1 <- read.csv.sql("household_power_consumption.txt",
"select Date,Global_active_power from file where Date = '1/2/2007' or Date = '2/2/2007'",
header=TRUE, sep = ";")
## create plot
png("plot1.png",width = 480, height = 480)
hist(df1$Global_active_power,
col = "red",
main = "Global Active Power",
xlab = "Global Active Power (kilowatts)")
dev.off()