R Dataset / Package mosaicData / Utilities
On this R-data statistics page, you will find information about the Utilities data set which pertains to Utility bills. The Utilities data set is found in the mosaicData R package. You can load the Utilities data set in R by issuing the following command at the console data("Utilities"). This will load the data into a variable called Utilities. If R says the Utilities data set is not found, you can try installing the package by issuing this command install.packages("mosaicData") and then attempt to reload the data with the library() command. If you need to download R, you can go to the R project website. You can download a CSV (comma separated values) version of the Utilities R data set. The size of this file is about 6,185 bytes.
Utility bills
Description
Data from utility bills at a residence. Utilities2
is a similar data set with some additional variables.
Usage
data(Utilities)
Format
A data frame containing 117 observations for the following variables.
-
month
month (coded as a number) -
day
day of month on which bill was calculated -
year
year of bill -
temp
average temperature (F) for billing period -
kwh
electricity usage (kwh) -
ccf
gas usage (ccf) -
thermsPerDay
a numeric vector -
billingDays
number of billing days in billing period -
totalbill
total bill (in dollars) -
gasbill
gas bill (in dollars) -
elecbill
exectric bill (in dollars) -
notes
notes about the billing period
Source
Daniel T. Kaplan, Statistical modeling: A fresh approach, 2009.
See Also
Utilities2
.
Examples
data(Utilities) if (require(lattice)) { xyplot(gasbill ~ temp, Utilities) }
Dataset imported from https://www.r-project.org.