From 36b150b0382803aae497ee036bb2f87370b81d8c Mon Sep 17 00:00:00 2001 From: Matthew Hunt Date: Mon, 4 May 1998 17:53:35 +0000 Subject: Import of R, a language for mathematical programming. PR: 6503 Submitted by: Maurice Castro --- math/R-project/Makefile | 61 +++ math/R-project/distinfo | 1 + math/R-project/files/R | 69 ++++ math/R-project/pkg-comment | 1 + math/R-project/pkg-descr | 12 + math/R-project/pkg-plist | 990 +++++++++++++++++++++++++++++++++++++++++++++ 6 files changed, 1134 insertions(+) create mode 100644 math/R-project/Makefile create mode 100644 math/R-project/distinfo create mode 100644 math/R-project/files/R create mode 100644 math/R-project/pkg-comment create mode 100644 math/R-project/pkg-descr create mode 100644 math/R-project/pkg-plist (limited to 'math/R-project') diff --git a/math/R-project/Makefile b/math/R-project/Makefile new file mode 100644 index 000000000000..ac1cd756e4ed --- /dev/null +++ b/math/R-project/Makefile @@ -0,0 +1,61 @@ +# New ports collection makefile for: R +# Version required: R-0.61.2 +# Date created: Mon May 4 10:03:02 EST 1998 +# Whom: Maurice Castro +# +# $Id$ +# + +DISTNAME= R-0.61.2 +PKGNAME= r-${PAPERSIZE:S/A4/a4/:S/LETTER/letter/:S/Letter/letter/}-0.61.2 +CATEGORIES= math +MASTER_SITES= http://lib.stat.cmu.edu/R/CRAN/src/base/ \ + ftp://ftp.stat.math.ethz.ch/R/ \ + ftp://ftp.u-aizu.ac.jp/pub/lang/R/ +EXTRACT_SUFX= .tgz + +MAINTAINER= maurice@serc.rmit.edu.au + +GNU_CONFIGURE= yes +USE_PERL5= yes + +MANUAL_PACKAGE_BUILD= PAPERSIZE has to be set to Letter A4 +CONFIGURE_ENV= R_PAPERSIZE=${PAPERSIZE} + +.if !defined(PAPERSIZE) +PAPERSIZE=a4 +.elif ${PAPERSIZE} == LETTER || ${PAPERSIZE} == Letter +PAPERSIZE=letter +.elif ${PAPERSIZE} == A4 +PAPERSIZE=a4 +.elif ${PAPERSIZE} != a4 && ${PAPERSIZE} != letter +PAPERSIZE_INVALID=yes +.endif + +pre-fetch: +.if defined(PAPERSIZE_INVALID) + @${ECHO} "Invalid value for PAPERSIZE: \"${PAPERSIZE}\"" + @${ECHO} "Possible values are: A4 (default), and Letter." + @${FALSE} +.endif + +post-configure: + cd ${WRKSRC}/etc; && ${PREFIX}/bin/perl -pi -e "s#/usr/bin/perl#${PREFIX}/bin/perl#" `grep -l /usr/bin/perl *` + +do-install: + ${SED} 's:PREFIX:${PREFIX}:' ${FILESDIR}/R > ${PREFIX}/bin/R + (cd ${WRKSRC}; find . -type d -exec chmod a+rx \{\} \; ) + (cd ${WRKSRC}; find . -type f -exec chmod a+r \{\} \; ) + chmod a+x ${PREFIX}/bin/R + ${MKDIR} ${PREFIX}/share/R + ${MKDIR} ${PREFIX}/share/R/bin + ${INSTALL_PROGRAM} ${WRKSRC}/bin/R.binary ${PREFIX}/share/R/bin + (cd ${WRKSRC}; tar cpf - afm ) | (cd ${PREFIX}/share/R; tar xpf - ) + (cd ${WRKSRC}; tar cpf - etc ) | (cd ${PREFIX}/share/R; tar xpf - ) + (cd ${WRKSRC}; tar cpf - html ) | (cd ${PREFIX}/share/R; tar xpf - ) + (cd ${WRKSRC}; tar cpf - include ) | (cd ${PREFIX}/share/R; tar xpf - ) + (cd ${WRKSRC}; tar cpf - library ) | (cd ${PREFIX}/share/R; tar xpf - ) + (cd ${WRKSRC}; tar cpf - demos ) | (cd ${PREFIX}/share/R; tar xpf - ) + (cd ${WRKSRC}; tar cpf - cmd ) | (cd ${PREFIX}/share/R; tar xpf - ) + +.include diff --git a/math/R-project/distinfo b/math/R-project/distinfo new file mode 100644 index 000000000000..ba224df45cc2 --- /dev/null +++ b/math/R-project/distinfo @@ -0,0 +1 @@ +MD5 (R-0.61.2.tgz) = 9f73cc9af346f17e49355bd24568331b diff --git a/math/R-project/files/R b/math/R-project/files/R new file mode 100644 index 000000000000..493f41b35183 --- /dev/null +++ b/math/R-project/files/R @@ -0,0 +1,69 @@ +#!/bin/sh +# Shell wrapper for R executable. +# Just sets a few environment items + +RHOME=PREFIX/share/R +export RHOME + +if [ "$1" = "RHOME" ] +then + echo $RHOME; exit 0 +fi + +if [ "$1" = "SHLIB" ] +then + shift + exec sh $RHOME/etc/SHLIB $* +fi + +if [ "$1" = "COMPILE" ] +then + shift + exec sh $RHOME/etc/COMPILE $* +fi + +if [ "$1" = "INSTALL" ] +then + shift + exec sh $RHOME/etc/INSTALL $* +fi + +if [ "$1" = "REMOVE" ] +then + shift + exec sh $RHOME/etc/REMOVE $* +fi + +if [ "$1" = -xxgdb ] +then + shift + DEBUGGER=xxgdb +fi + +if [ "$1" = -gdb ] +then + shift + DEBUGGER=gdb +fi + +# Default Printer Paper Size +# Choose one of the following +# R_PAPERSIZE="a4" +# R_PAPERSIZE="letter" +# R_PAPERSIZE="none" +R_PAPERSIZE=a4 +export R_PAPERSIZE + +# Default Print Command +# Choose one of the following +# R_PRINTCMD="lpr" +# R_PRINTCMD="lp" +R_PRINTCMD=lpr +export R_PRINTCMD + +if [ $DEBUGGER ] +then + exec $DEBUGGER $RHOME/bin/R.binary +else + exec $RHOME/bin/R.binary $* +fi diff --git a/math/R-project/pkg-comment b/math/R-project/pkg-comment new file mode 100644 index 000000000000..3ecd74658b4d --- /dev/null +++ b/math/R-project/pkg-comment @@ -0,0 +1 @@ +R a language for statistics similar to AT&T's S diff --git a/math/R-project/pkg-descr b/math/R-project/pkg-descr new file mode 100644 index 000000000000..89b251a71ba2 --- /dev/null +++ b/math/R-project/pkg-descr @@ -0,0 +1,12 @@ +R is a language which is not entirely unlike the S language developed +at AT&T Bell Laboratories by Rick Becker, John Chambers and Allan +Wilks. + +R is free software distributed under a GNU-style copyleft. + +This port has most of the functionality in the first S book (the +"Blue Book") and many of the applications. In addition, a certain +amount of functionality from the second S book (the "White Book") +has been implemented. In particular functioning versions of "lm" +and "glm" and their associated "summary" and "anova" methods are +provided. diff --git a/math/R-project/pkg-plist b/math/R-project/pkg-plist new file mode 100644 index 000000000000..d1bc257c43fd --- /dev/null +++ b/math/R-project/pkg-plist @@ -0,0 +1,990 @@ +@exec mkdir %D/share/R +@exec mkdir %D/share/R/bin +@exec mkdir %D/share/R/afm +@exec mkdir %D/share/R/etc +@exec mkdir %D/share/R/etc/older-stuff +@exec mkdir %D/share/R/etc/undoc +@exec mkdir %D/share/R/html +@exec mkdir %D/share/R/html/tech +@exec mkdir %D/share/R/html/test +@exec mkdir %D/share/R/include +@exec mkdir %D/share/R/library +@exec mkdir %D/share/R/library/base +@exec mkdir %D/share/R/library/base/R +@exec mkdir %D/share/R/library/base/data +@exec mkdir %D/share/R/library/base/help +@exec mkdir %D/share/R/library/base/html +@exec mkdir %D/share/R/library/eda +@exec mkdir %D/share/R/library/eda/libs +@exec mkdir %D/share/R/library/eda/R +@exec mkdir %D/share/R/library/eda/help +@exec mkdir %D/share/R/library/eda/html +@exec mkdir %D/share/R/library/mva +@exec mkdir %D/share/R/library/mva/libs +@exec mkdir %D/share/R/library/mva/R +@exec mkdir %D/share/R/library/mva/help +@exec mkdir %D/share/R/library/mva/html +@exec mkdir %D/share/R/library/stepfun +@exec mkdir %D/share/R/library/stepfun/R +@exec mkdir %D/share/R/library/stepfun/help +@exec mkdir %D/share/R/library/stepfun/html +@exec mkdir %D/share/R/demos +@exec mkdir %D/share/R/demos/dynload +@exec mkdir %D/share/R/demos/graphics +@exec mkdir %D/share/R/demos/language +@exec mkdir %D/share/R/demos/models +@exec mkdir %D/share/R/demos/nlm +@exec mkdir %D/share/R/cmd +bin/R +share/R/bin/R.binary +share/R/afm/AvantB +share/R/afm/AvantBO +share/R/afm/AvantD +share/R/afm/AvantDO +share/R/afm/BookD +share/R/afm/BookDI +share/R/afm/BookL +share/R/afm/BookLI +share/R/afm/Cour +share/R/afm/CourB +share/R/afm/CourBO +share/R/afm/CourO +share/R/afm/Helv +share/R/afm/HelvB +share/R/afm/HelvBO +share/R/afm/HelvN +share/R/afm/HelvNB +share/R/afm/HelvNBO +share/R/afm/HelvNO +share/R/afm/HelvO +share/R/afm/NCSchlB +share/R/afm/NCSchlBI +share/R/afm/NCSchlI +share/R/afm/NCSchlR +share/R/afm/PalatB +share/R/afm/PalatBI +share/R/afm/PalatI +share/R/afm/PalatO +share/R/afm/PalatR +share/R/afm/Symbol +share/R/afm/TimesB +share/R/afm/TimesBI +share/R/afm/TimesI +share/R/afm/TimesO +share/R/afm/TimesR +share/R/afm/ZapfCMI +share/R/afm/ZapfD +share/R/etc/COMPILE.in +share/R/etc/INSTALL.in +share/R/etc/Makefile +share/R/etc/Makefile-test-Ex +share/R/etc/REMOVE.in +share/R/etc/Rd.files +share/R/etc/Rd2dvi +share/R/etc/Rd2txt +share/R/etc/Rdconv.in +share/R/etc/Rdindex.in +share/R/etc/Rdconvlib.pl +share/R/etc/SHLIB.in +share/R/etc/Rman2Rd.in +share/R/etc/Sd2Rd.in +share/R/etc/build-alldocs +share/R/etc/build-allhelp +share/R/etc/build-allhtml +share/R/etc/build-alllatex +share/R/etc/colors.big +share/R/etc/build-help.in +share/R/etc/build-htmlpkglist.in +share/R/etc/buildlib.pl +share/R/etc/colors.small +share/R/etc/config.sub +share/R/etc/config.guess +share/R/etc/help.pretty.in +share/R/etc/html2dos.in +share/R/etc/tasks +share/R/etc/install-sh +share/R/etc/massage-Examples +share/R/etc/test-things.Rd +share/R/etc/older-stuff/doc2EX +share/R/etc/older-stuff/doc2dvi +share/R/etc/older-stuff/doc2html +share/R/etc/older-stuff/doc2latex +share/R/etc/older-stuff/doc2ms +share/R/etc/older-stuff/extract-Examples +share/R/etc/older-stuff/help.format +share/R/etc/older-stuff/help.index +share/R/etc/older-stuff/help.pretty +share/R/etc/older-stuff/help.pretty.perl +share/R/etc/older-stuff/help.update +share/R/etc/undoc/NoEx +share/R/etc/undoc/Makefile +share/R/etc/undoc/extrExamp +share/R/etc/undoc/R-funs +share/R/etc/undoc/extrAllExamp +share/R/etc/undoc/getDoc +share/R/etc/undoc/getFunctions +share/R/etc/undoc/getnames +share/R/etc/SHLIB +share/R/etc/COMPILE +share/R/etc/INSTALL +share/R/etc/REMOVE +share/R/etc/Rdconv +share/R/etc/Rdindex +share/R/etc/Rman2Rd +share/R/etc/Sd2Rd +share/R/etc/build-help +share/R/etc/build-htmlpkglist +share/R/etc/help.pretty +share/R/etc/html2dos +share/R/etc/stamp-help +share/R/etc/stamp-html +share/R/html/authors.html +share/R/html/copying.html +share/R/html/index.html +share/R/html/intro.html +share/R/html/notdone.html +share/R/html/thanks.html +share/R/html/tech/color.html +share/R/html/tech/linetype.html +share/R/html/test/spline.html +share/R/include/S.h +share/R/include/S_compat.h +share/R/include/f2c.h +share/R/include/Fortran.h +share/R/include/Blas.h +share/R/include/Linpack.h +share/R/library/base/R/base +share/R/library/base/R/Rprofile +share/R/library/base/data/acid.R +share/R/library/base/data/women.R +share/R/library/base/data/warpbreaks.doc +share/R/library/base/data/warpbreaks.R +share/R/library/base/data/volcano.doc +share/R/library/base/data/volcano.R +share/R/library/base/data/uspop.doc +share/R/library/base/data/uspop.R +share/R/library/base/data/trees.doc +share/R/library/base/data/trees.R +share/R/library/base/data/swiss.R +share/R/library/base/data/sunspots.R +share/R/library/base/data/state.R +share/R/library/base/data/stackloss.doc +share/R/library/base/data/stackloss.R +share/R/library/base/data/sleep.R +share/R/library/base/data/savings.doc +share/R/library/base/data/savings.R +share/R/library/base/data/rivers.doc +share/R/library/base/data/rivers.R +share/R/library/base/data/randu.R +share/R/library/base/data/quakes.doc +share/R/library/base/data/quakes.R +share/R/library/base/data/pressure.R +share/R/library/base/data/presidents.doc +share/R/library/base/data/presidents.R +share/R/library/base/data/precip.doc +share/R/library/base/data/precip.R +share/R/library/base/data/plants.R +share/R/library/base/data/pigs.doc +share/R/library/base/data/pigs.R +share/R/library/base/data/phones.doc +share/R/library/base/data/phones.R +share/R/library/base/data/nhtemp.doc +share/R/library/base/data/nhtemp.R +share/R/library/base/data/mtcars.R +share/R/library/base/data/longley.doc +share/R/library/base/data/longley.R +share/R/library/base/data/judges.doc +share/R/library/base/data/judges.R +share/R/library/base/data/islands.doc +share/R/library/base/data/islands.R +share/R/library/base/data/iris3.R +share/R/library/base/data/iris.R +share/R/library/base/data/insects.doc +share/R/library/base/data/insects.R +share/R/library/base/data/infert.doc +share/R/library/base/data/infert.R +share/R/library/base/data/index.doc +share/R/library/base/data/freeny.doc +share/R/library/base/data/freeny.R +share/R/library/base/data/faithful.doc +share/R/library/base/data/faithful.R +share/R/library/base/data/eurodist.doc +share/R/library/base/data/eurodist.R +share/R/library/base/data/esoph.doc +share/R/library/base/data/esoph.R +share/R/library/base/data/discoveries.doc +share/R/library/base/data/discoveries.R +share/R/library/base/data/deaths.doc +share/R/library/base/data/deaths.R +share/R/library/base/data/crimes.doc +share/R/library/base/data/crimes.R +share/R/library/base/data/consume.doc +share/R/library/base/data/consume.R +share/R/library/base/data/chickwts.doc +share/R/library/base/data/chickwts.R +share/R/library/base/data/cars.doc +share/R/library/base/data/cars.R +share/R/library/base/data/bees.doc +share/R/library/base/data/bees.R +share/R/library/base/data/attitude.R +share/R/library/base/data/attenu.doc +share/R/library/base/data/attenu.R +share/R/library/base/data/anscombe.doc +share/R/library/base/data/anscombe.R +share/R/library/base/data/airquality.doc +share/R/library/base/data/airquality.R +share/R/library/base/data/airmiles.doc +share/R/library/base/data/airmiles.R +share/R/library/base/data/acid.doc +share/R/library/base/data/women.doc +share/R/library/base/TITLE +share/R/library/base/INDEX +share/R/library/base/help/Arithmetic +share/R/library/base/help/AnIndex +share/R/library/base/help/Beta +share/R/library/base/help/Binomial +share/R/library/base/help/Cauchy +share/R/library/base/help/Chisquare +share/R/library/base/help/Comparison +share/R/library/base/help/Constants +share/R/library/base/help/Control +share/R/library/base/help/Devices +share/R/library/base/help/Exponential +share/R/library/base/help/Extract +share/R/library/base/help/Extremes +share/R/library/base/help/F +share/R/library/base/help/Foreign +share/R/library/base/help/GammaDist +share/R/library/base/help/Geometric +share/R/library/base/help/Hyperbolic +share/R/library/base/help/Hypergeometric +share/R/library/base/help/IQR +share/R/library/base/help/Internal +share/R/library/base/help/Log +share/R/library/base/help/Logic +share/R/library/base/help/Logistic +share/R/library/base/help/Lognormal +share/R/library/base/help/Machine +share/R/library/base/help/Math +share/R/library/base/help/NA +share/R/library/base/help/NChisquare +share/R/library/base/help/NULL +share/R/library/base/help/NegBinomial +share/R/library/base/help/Normal +share/R/library/base/help/Poisson +share/R/library/base/help/Random +share/R/library/base/help/Round +share/R/library/base/help/Special +share/R/library/base/help/T +share/R/library/base/help/Trig +share/R/library/base/help/Uniform +share/R/library/base/help/Version +share/R/library/base/help/Weibull +share/R/library/base/help/abbreviate +share/R/library/base/help/abline +share/R/library/base/help/all +share/R/library/base/help/allnames +share/R/library/base/help/anova +share/R/library/base/help/aperm +share/R/library/base/help/append +share/R/library/base/help/apply +share/R/library/base/help/approxfun +share/R/library/base/help/apropos +share/R/library/base/help/args +share/R/library/base/help/array +share/R/library/base/help/arrows +share/R/library/base/help/assign +share/R/library/base/help/attach +share/R/library/base/help/attr +share/R/library/base/help/attributes +share/R/library/base/help/autoload +share/R/library/base/help/axis +share/R/library/base/help/backsolve +share/R/library/base/help/barplot +share/R/library/base/help/box +share/R/library/base/help/boxplot +share/R/library/base/help/boxplot.stats +share/R/library/base/help/browser +share/R/library/base/help/bxp +share/R/library/base/help/c +share/R/library/base/help/call +share/R/library/base/help/cat +share/R/library/base/help/cbind +share/R/library/base/help/character +share/R/library/base/help/chisq.test +share/R/library/base/help/chol +share/R/library/base/help/chol2inv +share/R/library/base/help/class +share/R/library/base/help/codes +share/R/library/base/help/coefficients +share/R/library/base/help/col +share/R/library/base/help/colnames +share/R/library/base/help/colors +share/R/library/base/help/complete.cases +share/R/library/base/help/complex +share/R/library/base/help/contour +share/R/library/base/help/contrast +share/R/library/base/help/contrasts +share/R/library/base/help/convolve +share/R/library/base/help/coplot +share/R/library/base/help/cor +share/R/library/base/help/count.fields +share/R/library/base/help/crossprod +share/R/library/base/help/cumsum +share/R/library/base/help/curve +share/R/library/base/help/cut +share/R/library/base/help/data +share/R/library/base/help/data.class +share/R/library/base/help/data.frame +share/R/library/base/help/data.matrix +share/R/library/base/help/dataentry +share/R/library/base/help/debug +share/R/library/base/help/delay +share/R/library/base/help/demo +share/R/library/base/help/density +share/R/library/base/help/deparse +share/R/library/base/help/deriv +share/R/library/base/help/detach +share/R/library/base/help/deviance +share/R/library/base/help/df.residual +share/R/library/base/help/diag +share/R/library/base/help/diff +share/R/library/base/help/dim +share/R/library/base/help/dimnames +share/R/library/base/help/do.call +share/R/library/base/help/dotplot +share/R/library/base/help/double +share/R/library/base/help/dput +share/R/library/base/help/drop +share/R/library/base/help/dump +share/R/library/base/help/duplicated +share/R/library/base/help/dynload +share/R/library/base/help/edit +share/R/library/base/help/eigen +share/R/library/base/help/environment +share/R/library/base/help/eval +share/R/library/base/help/exists +share/R/library/base/help/expression +share/R/library/base/help/factor +share/R/library/base/help/family +share/R/library/base/help/fft +share/R/library/base/help/fitted.values +share/R/library/base/help/fivenum +share/R/library/base/help/fix +share/R/library/base/help/formals +share/R/library/base/help/format +share/R/library/base/help/formatc +share/R/library/base/help/formula +share/R/library/base/help/frame +share/R/library/base/help/function +share/R/library/base/help/gc +share/R/library/base/help/get +share/R/library/base/help/getenv +share/R/library/base/help/gl +share/R/library/base/help/glm +share/R/library/base/help/graphics.off +share/R/library/base/help/gray +share/R/library/base/help/grep +share/R/library/base/help/grid +share/R/library/base/help/help +share/R/library/base/help/hist +share/R/library/base/help/hsv +share/R/library/base/help/identify +share/R/library/base/help/ifelse +share/R/library/base/help/image +share/R/library/base/help/influence.measures +share/R/library/base/help/integer +share/R/library/base/help/interactive +share/R/library/base/help/invisible +share/R/library/base/help/is.atomic +share/R/library/base/help/is.finite +share/R/library/base/help/is.function +share/R/library/base/help/is.language +share/R/library/base/help/is.recursive +share/R/library/base/help/is.single +share/R/library/base/help/lapply +share/R/library/base/help/legend +share/R/library/base/help/length +share/R/library/base/help/levels +share/R/library/base/help/library +share/R/library/base/help/license +share/R/library/base/help/lines +share/R/library/base/help/list +share/R/library/base/help/lm +share/R/library/base/help/lm.influence +share/R/library/base/help/load +share/R/library/base/help/locator +share/R/library/base/help/logical +share/R/library/base/help/ls +share/R/library/base/help/lower.tri +share/R/library/base/help/lowess +share/R/library/base/help/ls.diag +share/R/library/base/help/ls.print +share/R/library/base/help/lsfit +share/R/library/base/help/machine +share/R/library/base/help/macintosh +share/R/library/base/help/mad +share/R/library/base/help/mat.or.vec +share/R/library/base/help/match +share/R/library/base/help/match.arg +share/R/library/base/help/match.call +share/R/library/base/help/matplot +share/R/library/base/help/matrix +share/R/library/base/help/mean +share/R/library/base/help/median +share/R/library/base/help/menu +share/R/library/base/help/methods +share/R/library/base/help/missing +share/R/library/base/help/mode +share/R/library/base/help/model.frame +share/R/library/base/help/model.matrix +share/R/library/base/help/mtext +share/R/library/base/help/na.action +share/R/library/base/help/na.fail +share/R/library/base/help/name +share/R/library/base/help/names +share/R/library/base/help/nargs +share/R/library/base/help/nchar +share/R/library/base/help/nlm +share/R/library/base/help/nextn +share/R/library/base/help/nlevels +share/R/library/base/help/noquote +share/R/library/base/help/nrow +share/R/library/base/help/numeric +share/R/library/base/help/on.exit +share/R/library/base/help/optimize +share/R/library/base/help/options +share/R/library/base/help/order +share/R/library/base/help/outer +share/R/library/base/help/pairs +share/R/library/base/help/palette +share/R/library/base/help/palettes +share/R/library/base/help/par +share/R/library/base/help/parse +share/R/library/base/help/paste +share/R/library/base/help/pictex +share/R/library/base/help/piechart +share/R/library/base/help/plot +share/R/library/base/help/plot.xy +share/R/library/base/help/plotdefault +share/R/library/base/help/pmatch +share/R/library/base/help/points +share/R/library/base/help/polygon +share/R/library/base/help/polyroot +share/R/library/base/help/postscript +share/R/library/base/help/ppoints +share/R/library/base/help/predict +share/R/library/base/help/pretty +share/R/library/base/help/print +share/R/library/base/help/qr +share/R/library/base/help/print.default +share/R/library/base/help/proc.time +share/R/library/base/help/prod +share/R/library/base/help/prompt +share/R/library/base/help/prop.test +share/R/library/base/help/qqnorm +share/R/library/base/help/qraux +share/R/library/base/help/quantile +share/R/library/base/help/quit +share/R/library/base/help/range +share/R/library/base/help/rank +share/R/library/base/help/rbind +share/R/library/base/help/read.table +share/R/library/base/help/readline +share/R/library/base/help/real +share/R/library/base/help/rect +share/R/library/base/help/remove +share/R/library/base/help/rep +share/R/library/base/help/replace +share/R/library/base/help/residuals +share/R/library/base/help/rev +share/R/library/base/help/rgb +share/R/library/base/help/row +share/R/library/base/help/rownames +share/R/library/base/help/sample +share/R/library/base/help/save +share/R/library/base/help/scale +share/R/library/base/help/scan +share/R/library/base/help/sd +share/R/library/base/help/seq +share/R/library/base/help/sequence +share/R/library/base/help/sign +share/R/library/base/help/sink +share/R/library/base/help/solve +share/R/library/base/help/sort +share/R/library/base/help/source +share/R/library/base/help/splinefun +share/R/library/base/help/split +share/R/library/base/help/stem +share/R/library/base/help/stop +share/R/library/base/help/str +share/R/library/base/help/stripplot +share/R/library/base/help/strsplit +share/R/library/base/help/structure +share/R/library/base/help/strwidth +share/R/library/base/help/subset +share/R/library/base/help/substitute +share/R/library/base/help/substr +share/R/library/base/help/sum +share/R/library/base/help/summary +share/R/library/base/help/svd +share/R/library/base/help/sweep +share/R/library/base/help/switch +share/R/library/base/help/symnum +share/R/library/base/help/sys.parent +share/R/library/base/help/system +share/R/library/base/help/system.date +share/R/library/base/help/system.time +share/R/library/base/help/t +share/R/library/base/help/t.test +share/R/library/base/help/table +share/R/library/base/help/ts +share/R/library/base/help/tabulate +share/R/library/base/help/tapply +share/R/library/base/help/tempfile +share/R/library/base/help/terms +share/R/library/base/help/text +share/R/library/base/help/time +share/R/library/base/help/title +share/R/library/base/help/trace +share/R/library/base/help/traceback +share/R/library/base/help/transform +share/R/library/base/help/typeof +share/R/library/base/help/unique +share/R/library/base/help/uniroot +share/R/library/base/help/units +share/R/library/base/help/unlink +share/R/library/base/help/unlist +share/R/library/base/help/update.formula +share/R/library/base/help/update.lm +share/R/library/base/help/var +share/R/library/base/help/vector +share/R/library/base/help/warning +share/R/library/base/help/weighted.mean +share/R/library/base/help/window +share/R/library/base/help/write +share/R/library/base/help/x11 +share/R/library/base/help/xy.coords +share/R/library/base/html/00Index.html +share/R/library/base/html/Arithmetic.html +share/R/library/base/html/Beta.html +share/R/library/base/html/Binomial.html +share/R/library/base/html/Cauchy.html +share/R/library/base/html/Chisquare.html +share/R/library/base/html/Comparison.html +share/R/library/base/html/Constants.html +share/R/library/base/html/Control.html +share/R/library/base/html/Devices.html +share/R/library/base/html/Exponential.html +share/R/library/base/html/Extract.html +share/R/library/base/html/Extremes.html +share/R/library/base/html/F.html +share/R/library/base/html/Foreign.html +share/R/library/base/html/GammaDist.html +share/R/library/base/html/Geometric.html +share/R/library/base/html/Hyperbolic.html +share/R/library/base/html/Hypergeometric.html +share/R/library/base/html/IQR.html +share/R/library/base/html/Log.html +share/R/library/base/html/Internal.html +share/R/library/base/html/Logic.html +share/R/library/base/html/Logistic.html +share/R/library/base/html/Lognormal.html +share/R/library/base/html/Machine.html +share/R/library/base/html/Math.html +share/R/library/base/html/NA.html +share/R/library/base/html/NChisquare.html +share/R/library/base/html/NULL.html +share/R/library/base/html/NegBinomial.html +share/R/library/base/html/Normal.html +share/R/library/base/html/Poisson.html +share/R/library/base/html/Random.html +share/R/library/base/html/Round.html +share/R/library/base/html/Special.html +share/R/library/base/html/T.html +share/R/library/base/html/Trig.html +share/R/library/base/html/Uniform.html +share/R/library/base/html/Version.html +share/R/library/base/html/Weibull.html +share/R/library/base/html/abbreviate.html +share/R/library/base/html/abline.html +share/R/library/base/html/all.html +share/R/library/base/html/allnames.html +share/R/library/base/html/anova.html +share/R/library/base/html/aperm.html +share/R/library/base/html/append.html +share/R/library/base/html/apply.html +share/R/library/base/html/approxfun.html +share/R/library/base/html/apropos.html +share/R/library/base/html/args.html +share/R/library/base/html/array.html +share/R/library/base/html/arrows.html +share/R/library/base/html/assign.html +share/R/library/base/html/attach.html +share/R/library/base/html/attr.html +share/R/library/base/html/attributes.html +share/R/library/base/html/autoload.html +share/R/library/base/html/axis.html +share/R/library/base/html/backsolve.html +share/R/library/base/html/barplot.html +share/R/library/base/html/box.html +share/R/library/base/html/boxplot.html +share/R/library/base/html/boxplot.stats.html +share/R/library/base/html/browser.html +share/R/library/base/html/bxp.html +share/R/library/base/html/c.html +share/R/library/base/html/call.html +share/R/library/base/html/cat.html +share/R/library/base/html/cbind.html +share/R/library/base/html/character.html +share/R/library/base/html/chisq.test.html +share/R/library/base/html/chol.html +share/R/library/base/html/chol2inv.html +share/R/library/base/html/class.html +share/R/library/base/html/codes.html +share/R/library/base/html/coefficients.html +share/R/library/base/html/col.html +share/R/library/base/html/colnames.html +share/R/library/base/html/colors.html +share/R/library/base/html/complete.cases.html +share/R/library/base/html/complex.html +share/R/library/base/html/contour.html +share/R/library/base/html/contrast.html +share/R/library/base/html/contrasts.html +share/R/library/base/html/convolve.html +share/R/library/base/html/coplot.html +share/R/library/base/html/cor.html +share/R/library/base/html/crossprod.html +share/R/library/base/html/count.fields.html +share/R/library/base/html/cumsum.html +share/R/library/base/html/curve.html +share/R/library/base/html/cut.html +share/R/library/base/html/data.html +share/R/library/base/html/data.class.html +share/R/library/base/html/data.frame.html +share/R/library/base/html/data.matrix.html +share/R/library/base/html/dataentry.html +share/R/library/base/html/debug.html +share/R/library/base/html/delay.html +share/R/library/base/html/demo.html +share/R/library/base/html/density.html +share/R/library/base/html/deparse.html +share/R/library/base/html/deriv.html +share/R/library/base/html/detach.html +share/R/library/base/html/deviance.html +share/R/library/base/html/df.residual.html +share/R/library/base/html/diag.html +share/R/library/base/html/diff.html +share/R/library/base/html/dim.html +share/R/library/base/html/dimnames.html +share/R/library/base/html/double.html +share/R/library/base/html/do.call.html +share/R/library/base/html/dotplot.html +share/R/library/base/html/dput.html +share/R/library/base/html/drop.html +share/R/library/base/html/dump.html +share/R/library/base/html/duplicated.html +share/R/library/base/html/dynload.html +share/R/library/base/html/edit.html +share/R/library/base/html/eigen.html +share/R/library/base/html/environment.html +share/R/library/base/html/eval.html +share/R/library/base/html/exists.html +share/R/library/base/html/expression.html +share/R/library/base/html/factor.html +share/R/library/base/html/family.html +share/R/library/base/html/fft.html +share/R/library/base/html/fitted.values.html +share/R/library/base/html/fivenum.html +share/R/library/base/html/fix.html +share/R/library/base/html/formals.html +share/R/library/base/html/format.html +share/R/library/base/html/formatc.html +share/R/library/base/html/formula.html +share/R/library/base/html/frame.html +share/R/library/base/html/function.html +share/R/library/base/html/gc.html +share/R/library/base/html/get.html +share/R/library/base/html/getenv.html +share/R/library/base/html/gl.html +share/R/library/base/html/glm.html +share/R/library/base/html/graphics.off.html +share/R/library/base/html/gray.html +share/R/library/base/html/grep.html +share/R/library/base/html/grid.html +share/R/library/base/html/help.html +share/R/library/base/html/hist.html +share/R/library/base/html/hsv.html +share/R/library/base/html/identify.html +share/R/library/base/html/ifelse.html +share/R/library/base/html/image.html +share/R/library/base/html/influence.measures.html +share/R/library/base/html/integer.html +share/R/library/base/html/interactive.html +share/R/library/base/html/invisible.html +share/R/library/base/html/is.atomic.html +share/R/library/base/html/is.finite.html +share/R/library/base/html/is.function.html +share/R/library/base/html/is.language.html +share/R/library/base/html/is.recursive.html +share/R/library/base/html/is.single.html +share/R/library/base/html/lapply.html +share/R/library/base/html/legend.html +share/R/library/base/html/length.html +share/R/library/base/html/levels.html +share/R/library/base/html/library.html +share/R/library/base/html/license.html +share/R/library/base/html/lines.html +share/R/library/base/html/list.html +share/R/library/base/html/lm.html +share/R/library/base/html/lm.influence.html +share/R/library/base/html/load.html +share/R/library/base/html/locator.html +share/R/library/base/html/logical.html +share/R/library/base/html/lower.tri.html +share/R/library/base/html/lowess.html +share/R/library/base/html/ls.html +share/R/library/base/html/ls.diag.html +share/R/library/base/html/ls.print.html +share/R/library/base/html/qr.html +share/R/library/base/html/lsfit.html +share/R/library/base/html/machine.html +share/R/library/base/html/macintosh.html +share/R/library/base/html/mad.html +share/R/library/base/html/mat.or.vec.html +share/R/library/base/html/match.html +share/R/library/base/html/match.arg.html +share/R/library/base/html/match.call.html +share/R/library/base/html/matplot.html +share/R/library/base/html/matrix.html +share/R/library/base/html/mean.html +share/R/library/base/html/median.html +share/R/library/base/html/menu.html +share/R/library/base/html/methods.html +share/R/library/base/html/missing.html +share/R/library/base/html/mode.html +share/R/library/base/html/model.frame.html +share/R/library/base/html/model.matrix.html +share/R/library/base/html/mtext.html +share/R/library/base/html/na.action.html +share/R/library/base/html/na.fail.html +share/R/library/base/html/name.html +share/R/library/base/html/sd.html +share/R/library/base/html/names.html +share/R/library/base/html/nargs.html +share/R/library/base/html/nchar.html +share/R/library/base/html/nextn.html +share/R/library/base/html/nlevels.html +share/R/library/base/html/nlm.html +share/R/library/base/html/noquote.html +share/R/library/base/html/nrow.html +share/R/library/base/html/numeric.html +share/R/library/base/html/on.exit.html +share/R/library/base/html/optimize.html +share/R/library/base/html/options.html +share/R/library/base/html/order.html +share/R/library/base/html/outer.html +share/R/library/base/html/pairs.html +share/R/library/base/html/palette.html +share/R/library/base/html/palettes.html +share/R/library/base/html/par.html +share/R/library/base/html/parse.html +share/R/library/base/html/paste.html +share/R/library/base/html/pictex.html +share/R/library/base/html/piechart.html +share/R/library/base/html/plot.html +share/R/library/base/html/t.html +share/R/library/base/html/plot.xy.html +share/R/library/base/html/plotdefault.html +share/R/library/base/html/pmatch.html +share/R/library/base/html/points.html +share/R/library/base/html/polygon.html +share/R/library/base/html/polyroot.html +share/R/library/base/html/postscript.html +share/R/library/base/html/ppoints.html +share/R/library/base/html/predict.html +share/R/library/base/html/pretty.html +share/R/library/base/html/print.html +share/R/library/base/html/print.default.html +share/R/library/base/html/proc.time.html +share/R/library/base/html/prod.html +share/R/library/base/html/prompt.html +share/R/library/base/html/prop.test.html +share/R/library/base/html/qqnorm.html +share/R/library/base/html/qraux.html +share/R/library/base/html/quantile.html +share/R/library/base/html/quit.html +share/R/library/base/html/range.html +share/R/library/base/html/rank.html +share/R/library/base/html/rbind.html +share/R/library/base/html/read.table.html +share/R/library/base/html/readline.html +share/R/library/base/html/real.html +share/R/library/base/html/rect.html +share/R/library/base/html/remove.html +share/R/library/base/html/rep.html +share/R/library/base/html/replace.html +share/R/library/base/html/residuals.html +share/R/library/base/html/rev.html +share/R/library/base/html/rgb.html +share/R/library/base/html/row.html +share/R/library/base/html/rownames.html +share/R/library/base/html/sample.html +share/R/library/base/html/save.html +share/R/library/base/html/scale.html +share/R/library/base/html/scan.html +share/R/library/base/html/seq.html +share/R/library/base/html/sequence.html +share/R/library/base/html/sign.html +share/R/library/base/html/sink.html +share/R/library/base/html/solve.html +share/R/library/base/html/sort.html +share/R/library/base/html/source.html +share/R/library/base/html/splinefun.html +share/R/library/base/html/split.html +share/R/library/base/html/stem.html +share/R/library/base/html/stop.html +share/R/library/base/html/str.html +share/R/library/base/html/stripplot.html +share/R/library/base/html/strsplit.html +share/R/library/base/html/structure.html +share/R/library/base/html/strwidth.html +share/R/library/base/html/subset.html +share/R/library/base/html/substitute.html +share/R/library/base/html/substr.html +share/R/library/base/html/sum.html +share/R/library/base/html/summary.html +share/R/library/base/html/svd.html +share/R/library/base/html/sweep.html +share/R/library/base/html/switch.html +share/R/library/base/html/symnum.html +share/R/library/base/html/sys.parent.html +share/R/library/base/html/system.html +share/R/library/base/html/system.date.html +share/R/library/base/html/system.time.html +share/R/library/base/html/t.test.html +share/R/library/base/html/table.html +share/R/library/base/html/tabulate.html +share/R/library/base/html/tapply.html +share/R/library/base/html/tempfile.html +share/R/library/base/html/terms.html +share/R/library/base/html/text.html +share/R/library/base/html/time.html +share/R/library/base/html/title.html +share/R/library/base/html/trace.html +share/R/library/base/html/traceback.html +share/R/library/base/html/transform.html +share/R/library/base/html/ts.html +share/R/library/base/html/typeof.html +share/R/library/base/html/unique.html +share/R/library/base/html/uniroot.html +share/R/library/base/html/units.html +share/R/library/base/html/unlink.html +share/R/library/base/html/unlist.html +share/R/library/base/html/update.formula.html +share/R/library/base/html/update.lm.html +share/R/library/base/html/var.html +share/R/library/base/html/vector.html +share/R/library/base/html/warning.html +share/R/library/base/html/weighted.mean.html +share/R/library/base/html/window.html +share/R/library/base/html/write.html +share/R/library/base/html/x11.html +share/R/library/base/html/xy.coords.html +share/R/library/eda/libs/eda.so +share/R/library/eda/R/eda +share/R/library/eda/INDEX +share/R/library/eda/TITLE +share/R/library/eda/help/line +share/R/library/eda/help/AnIndex +share/R/library/eda/help/medpolish +share/R/library/eda/help/smooth +share/R/library/eda/html/00Index.html +share/R/library/eda/html/line.html +share/R/library/eda/html/medpolish.html +share/R/library/eda/html/smooth.html +share/R/library/LibIndex +share/R/library/mva/libs/mva.so +share/R/library/mva/R/mva +share/R/library/mva/INDEX +share/R/library/mva/TITLE +share/R/library/mva/help/cancor +share/R/library/mva/help/AnIndex +share/R/library/mva/help/cmdscale +share/R/library/mva/help/dist +share/R/library/mva/help/hclust +share/R/library/mva/help/prcomp +share/R/library/mva/html/00Index.html +share/R/library/mva/html/cancor.html +share/R/library/mva/html/cmdscale.html +share/R/library/mva/html/dist.html +share/R/library/mva/html/hclust.html +share/R/library/mva/html/prcomp.html +share/R/library/stepfun/R/stepfun +share/R/library/stepfun/INDEX +share/R/library/stepfun/TITLE +share/R/library/stepfun/help/ecdf +share/R/library/stepfun/help/AnIndex +share/R/library/stepfun/help/plot.stepfun +share/R/library/stepfun/help/stepfun +share/R/library/stepfun/html/00Index.html +share/R/library/stepfun/html/ecdf.html +share/R/library/stepfun/html/plot.stepfun.html +share/R/library/stepfun/html/stepfun.html +share/R/library/index.html +share/R/demos/dynload/Makefile.in +share/R/demos/dynload/README +share/R/demos/dynload/zero.R +share/R/demos/dynload/zero.c +share/R/demos/dynload/Makefile +share/R/demos/graphics/graphics.R +share/R/demos/graphics/image.R +share/R/demos/language/is-things.R +share/R/demos/language/recursion.R +share/R/demos/language/scoping.R +share/R/demos/models/glm-v+r.R +share/R/demos/models/lm+glm.R +share/R/demos/nlm/valley.R +share/R/cmd/filename +share/R/cmd/fwf2table.in +share/R/cmd/help +share/R/cmd/loadpath +share/R/cmd/pager +share/R/cmd/fwf2table +@dirrm share/R/etc/older-stuff +@dirrm share/R/etc/undoc +@dirrm share/R/html/tech +@dirrm share/R/html/test +@dirrm share/R/html +@dirrm share/R/library/base/R +@dirrm share/R/library/base/data +@dirrm share/R/library/base/help +@dirrm share/R/library/base/html +@dirrm share/R/library/base +@dirrm share/R/library/eda/libs +@dirrm share/R/library/eda/R +@dirrm share/R/library/eda/help +@dirrm share/R/library/eda/html +@dirrm share/R/library/eda +@dirrm share/R/library/mva/libs +@dirrm share/R/library/mva/R +@dirrm share/R/library/mva/help +@dirrm share/R/library/mva/html +@dirrm share/R/library/mva +@dirrm share/R/library/stepfun/R +@dirrm share/R/library/stepfun/help +@dirrm share/R/library/stepfun/html +@dirrm share/R/library/stepfun +@dirrm share/R/demos/dynload +@dirrm share/R/demos/graphics +@dirrm share/R/demos/language +@dirrm share/R/demos/models +@dirrm share/R/demos/nlm +@dirrm share/R/include +@dirrm share/R/library +@dirrm share/R/demos +@dirrm share/R/bin +@dirrm share/R/afm +@dirrm share/R/etc +@dirrm share/R/cmd +@dirrm share/R -- cgit v1.2.3