Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

!! This should be done in R or RStudio !! This assignment uses data from the UC

ID: 672221 • Letter: #

Question

!! This should be done in R or RStudio !!

This assignment uses data from the UC Irvine Machine Learning Repository                  (http://archive.ics.uci.edu/ml/), a popular repository for machine learning datasets. In particular, we will be using the “Individual household electric power consumption Data Set”

When loading the dataset into R, please consider the following:
• The dataset has 2,075,259 rows and 9 columns. First calculate a rough estimate of how much memory the dataset will require in memory before reading into R.
• We will only be using data from the dates 2007-02-01 and 2007-02-02. One alternative is to read the data from just those dates rather than reading in the entire dataset and subsetting to those dates.
• You may find it useful to convert the Date and Time variables to Date/Time classes in R using the strptime() and as.Date() functions.
• Note that in this dataset missing values are coded as ?.

Our overall goal here is simply to examine how household energy usage varies over a 2-day period in February, 2007. Your task is to reconstruct the following plots below, all of which were constructed using the base plotting system.

For each plot you should
• Construct the plot and save it to a PNG file with a width of 480 pixels and a height of 480 pixels.
• Name each of the plot files as plot1.png, plot2.png, etc.
• Create a separate R code file (plot1.R, plot2.R, etc.) that constructs the corresponding plot, i.e. code in plot1.R constructs the plot1.png plot. Your code file should include code for reading the data so that the plot can be fully reproduced. You must also include the code that creates the PNG file.

The four plots look like this:

Explanation / Answer

1) The dataset has 2,075,259 rows and 9 columns if we take rough estimate

total rows = 2,075,259

columns = 9

we if consider 1 data as 8 Bytes then

2,075,259 * 9* 8 = 149418648 / 1048 = 142 MB

2)

Here we search entire date in feb_data.txt file

Now need to read data into table so we written

3) It is useful to convert the Date and Time variables to Date/Time classes in R using the strptime() and as.Date() functions.

4) Here is data for plots

Plots 1

Plots 2

Plot 3

Plot 4