Learn R Programming

NPCirc (version 3.1.1)

cycle.changes: Cycle changes

Description

The data consists on the changes in cycles of temperatures at ground level in periglacial Monte Alvear (Argentina). The dataset includes 350 observations which correspond to the hours where the temperature changes from positive to negative and viceversa from February 2008 to December 2009.

Usage

data(cycle.changes)

Arguments

Format

A data frame with 350 observations on two variables: change, which indicates if the temperature changed from positive to negative (-1) or viceversa (1) and hour, which indicates the hour (in radians) when the cycle change occured.

Details

Analysis of cycle changes in temperatures for another locations can be seen in Oliveira et al. (2013).

References

Oliveira, M., Crujeiras R.M. and Rodriguez--Casal, A. (2013) Nonparametric circular methods for exploring environmental data. Environmental and Ecological Statistics, 20, 1--17.

Examples

Run this code
data(cycle.changes)
thaw <- (cycle.changes[,1]==1)
frosting <- (cycle.changes[,1]==-1)
plot(circular(cycle.changes[frosting,2],template="clock24"), shrink=1.08, col=4, 
stack=TRUE, main="Frosting")
plot(circular(cycle.changes[thaw,2],template="clock24"), shrink=1.08, col=2, 
stack=TRUE, main="Thaw")

Run the code above in your browser using DataLab