Skip to content

Create plot1.R #1015

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions plot1.R
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
png("plot1.png",width = 480,height=480)

#Loading the data , as you can see, I didnt need the strptime
#or the as.Date function(for now!)
data<- read.delim("household_power_consumption.txt",sep = ";")
library(data.table)
data<-data.table(data)
data1 <- data[Date%in%c("1/2/2007","2/2/2007"),]

View(data1)
data1$Global_active_power<-as.numeric(data1$Global_active_power)
hist(data1$Global_active_power,col = "red", xlab = "Global active power (kilowatts)",main = "Global active power")
dev.off()