Skip to content

Commit 78c7cbe

Browse files
committed
first push
1 parent 73fe5c6 commit 78c7cbe

File tree

7 files changed

+48
-0
lines changed

7 files changed

+48
-0
lines changed

plot1.R

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
df = read.table("ExData_Plotting1/household_power_consumption.txt", header = TRUE, sep = ";")
2+
d1 = strptime("2007-02-01","%Y-%m-%d")
3+
d2 = strptime("2007-02-02","%Y-%m-%d")
4+
df$Date = strptime(df$Date, "%d/%m/%Y")
5+
df2 = df[(df$Date == d1) | (df$Date == d2),]
6+
df2$Global_active_power = as.numeric(df2$Global_active_power)/1000
7+
hist(df2$Global_active_power, xlim = range(0:6), col = "red", main = "Global Active Power", xlab = "Global Active Power (kilowatts)", ylab = "Frequency", breaks = 16)

plot1.png

4.33 KB
Loading

plot2.R

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
df = read.table("ExData_Plotting1/household_power_consumption.txt", header = TRUE, sep = ";")
2+
d1 = strptime("2007-02-01","%Y-%m-%d")
3+
d2 = strptime("2007-02-02","%Y-%m-%d")
4+
df$Date = strptime(df$Date, "%d/%m/%Y")
5+
df2 = df[(df$Date == d1) | (df$Date == d2),]
6+
df2$Global_active_power = as.numeric(df2$Global_active_power)/1000
7+
df2$NewDate = paste(df2$Date, df2$Time)
8+
df2$NewDate = strptime(df2$NewDate, "%Y-%m-%d %H:%M:%S")
9+
plot(df2$NewDate, df2$Global_active_power, type = "l", ylab = "Global Active Power (kilowatts)", xlab = "")

plot2.png

6.02 KB
Loading

plot3.R

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
df = read.table("ExData_Plotting1/household_power_consumption.txt", header = TRUE, sep = ";", stringsAsFactors = F)
2+
d1 = strptime("2007-02-01","%Y-%m-%d")
3+
d2 = strptime("2007-02-02","%Y-%m-%d")
4+
df$Date = strptime(df$Date, "%d/%m/%Y")
5+
df = df[(df$Date == d1) | (df$Date == d2),]
6+
7+
df$NewDate = paste(df$Date, df2$Time)
8+
df$NewDate = strptime(df$NewDate, "%Y-%m-%d %H:%M:%S")
9+
10+
df$Sub_metering_1 = as.numeric(df$Sub_metering_1)
11+
df$Sub_metering_2 = as.numeric(df$Sub_metering_2)
12+
df$Sub_metering_3 = as.numeric(df$Sub_metering_3)
13+
14+
plot(df$NewDate, df$Sub_metering_1, type = "l", ylab = "Energy Sub Metering", xlab = "")
15+
points(df$NewDate, df$Sub_metering_2, col = "red", type = "l")
16+
points(df$NewDate, df$Sub_metering_3, col = "blue", type = "l")

plot3.png

3.67 KB
Loading

plot4.R

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
df = read.table("ExData_Plotting1/household_power_consumption.txt", header = TRUE, sep = ";", stringsAsFactors = F)
2+
d1 = strptime("2007-02-01","%Y-%m-%d")
3+
d2 = strptime("2007-02-02","%Y-%m-%d")
4+
df$Date = strptime(df$Date, "%d/%m/%Y")
5+
df = df[(df$Date == d1) | (df$Date == d2),]
6+
7+
df$NewDate = paste(df$Date, df2$Time)
8+
df$NewDate = strptime(df$NewDate, "%Y-%m-%d %H:%M:%S")
9+
10+
df$Sub_metering_1 = as.numeric(df$Sub_metering_1)
11+
df$Sub_metering_2 = as.numeric(df$Sub_metering_2)
12+
df$Sub_metering_3 = as.numeric(df$Sub_metering_3)
13+
14+
plot(df$NewDate, df$Sub_metering_1, type = "l", ylab = "Energy Sub Metering", xlab = "")
15+
points(df$NewDate, df$Sub_metering_2, col = "red", type = "l")
16+
points(df$NewDate, df$Sub_metering_3, col = "blue", type = "l")

0 commit comments

Comments
 (0)