R Dataset / Package datasets / nhtemp
On this R-data statistics page, you will find information about the nhtemp data set which pertains to Average Yearly Temperatures in New Haven. The nhtemp data set is found in the datasets R package. You can load the nhtemp data set in R by issuing the following command at the console data("nhtemp"). This will load the data into a variable called nhtemp. If R says the nhtemp data set is not found, you can try installing the package by issuing this command install.packages("datasets") 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 nhtemp R data set. The size of this file is about 604 bytes.
Average Yearly Temperatures in New Haven
Description
The mean annual temperature in degrees Fahrenheit in New Haven, Connecticut, from 1912 to 1971.
Usage
nhtemp
Format
A time series of 60 observations.
Source
Vaux, J. E. and Brinker, N. B. (1972) Cycles, 1972, 117–121.
References
McNeil, D. R. (1977) Interactive Data Analysis. New York: Wiley.
Examples
require(stats); require(graphics) plot(nhtemp, main = "nhtemp data", ylab = "Mean annual temperature in New Haven, CT (deg. F)")
Dataset imported from https://www.r-project.org.