Rev 8893 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
\name{Constants}\alias{LETTERS}\alias{letters}\alias{month.abb}\alias{month.name}\alias{pi}\title{Built-in Constants}\description{Constants built into \R.}\usage{LETTERSlettersmonth.abbmonth.namepi}\details{\R has a limited number of built-in constants (there is also a ratherlarger library of data sets which can be loaded with the function\code{\link{data}}).The following constants are available:\itemize{\item \code{LETTERS}: the 26 upper-case letters of the Romanalphabet;\item \code{letters}: the 26 lower-case letters of the Romanalphabet;\item \code{month.abb}: the three-letter abbreviations for theEnglish month names;\item \code{month.name}: the English names for the months of theyear;\item \code{pi}: the ratio of the circumference of a circle to itsdiameter.}}\seealso{\code{\link{data}}.}\examples{stopifnot(nchar(letters) == 1,month.abb == substr(month.name, 1, 3))eps <- .Machine$double.epsall.equal(pi, 4*atan(1), tol= 2*eps)# John Machin (1705) computed 100 decimals of pi :all.equal(pi/4, 4*atan(1/5) - atan(1/239), 4*eps)}\keyword{sysdata}