# *************************************************************************** # Getting help in R # *************************************************************************** help(t.test) ?t.test ??test # *************************************************************************** # R packages available # *************************************************************************** library() # *************************************************************************** # Installing and loading the "circular" package # *************************************************************************** install.packages(circular) library(circular) # *************************************************************************** # First use of a data set from the "circular" package # *************************************************************************** fisherB1c ?fisherB1c # *************************************************************************** # List of data sets available in session # *************************************************************************** data() # *************************************************************************** # Raw circular data plots # *************************************************************************** plot(fisherB1c, pch=16, col="blue", stack=T, shrink=1.2, bins=720, ticks=T) plot(fisherB1c, pch=1, col="red", stack=T, shrink=1.4, bins=720, ticks=F) # *************************************************************************** # First use of a function from the CircStatinR workspace # *************************************************************************** vMPPQQ(circular(wind), circular(0.3), 1.8)