| temperature | R Documentation |
This dataset contains the monthly mean temperatures recorded at Rothamsted Experimental Station from 1891 to 1990. Each observation represents the mean temperature (variate Temperature) for a specific month and year within this 100-year period. The data are suitable for time series analysis and are expected to exhibit an annual cyclic pattern, making them appropriate for modeling using trigonometric regression methods.
temperature
A data frame with 3 variables: MonthName, Month, Temperature.
Factor. Name of the month (e.g., "January", "February").
Integer. Numeric code for the month (1 = January, ..., 12 = December).
Numeric. Mean temperature for the month (in degrees Celsius).
Welham, S. J., Gezan, S. A., Clark, S. J., and Mead, A. (2015) Statistical Methods in Biology: Design and analysis of experiments and regression
lm(Temperature ~ sin(2 * pi * Month / 12) + cos(2 * pi * Month / 12),
data = temperature)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.