├── R-src ├── VERSION ├── src │ ├── include │ │ └── stamp-h.in │ ├── library │ │ ├── Recommended │ │ │ ├── MASS.tgz │ │ │ ├── boot.tgz │ │ │ ├── class.tgz │ │ │ ├── mgcv.tgz │ │ │ ├── nlme.tgz │ │ │ ├── nnet.tgz │ │ │ ├── rpart.tgz │ │ │ ├── Matrix.tgz │ │ │ ├── cluster.tgz │ │ │ ├── foreign.tgz │ │ │ ├── lattice.tgz │ │ │ ├── spatial.tgz │ │ │ ├── codetools.tgz │ │ │ ├── survival.tgz │ │ │ ├── .cvsignore │ │ │ ├── KernSmooth.tgz │ │ │ ├── MASS_7.3-45.tar.gz │ │ │ ├── Matrix_1.2-4.tar.gz │ │ │ ├── boot_1.3-18.tar.gz │ │ │ ├── class_7.3-14.tar.gz │ │ │ ├── mgcv_1.8-12.tar.gz │ │ │ ├── nlme_3.1-125.tar.gz │ │ │ ├── nnet_7.3-12.tar.gz │ │ │ ├── rpart_4.1-10.tar.gz │ │ │ ├── cluster_2.0.3.tar.gz │ │ │ ├── foreign_0.8-66.tar.gz │ │ │ ├── lattice_0.20-33.tar.gz │ │ │ ├── spatial_7.3-11.tar.gz │ │ │ ├── survival_2.38-3.tar.gz │ │ │ ├── codetools_0.2-14.tar.gz │ │ │ └── KernSmooth_2.23-15.tar.gz │ │ ├── grid │ │ │ ├── src │ │ │ │ └── grid-win.def │ │ │ ├── po │ │ │ │ ├── fr.po │ │ │ │ ├── ru.po │ │ │ │ ├── R-fr.po │ │ │ │ └── R-ru.po │ │ │ ├── inst │ │ │ │ └── doc │ │ │ │ │ ├── frame.pdf │ │ │ │ │ ├── grid.pdf │ │ │ │ │ ├── grobs.pdf │ │ │ │ │ ├── locndimn.pdf │ │ │ │ │ ├── moveline.pdf │ │ │ │ │ ├── rotated.pdf │ │ │ │ │ ├── saveload.pdf │ │ │ │ │ ├── sharing.pdf │ │ │ │ │ ├── displaylist.pdf │ │ │ │ │ ├── interactive.pdf │ │ │ │ │ ├── nonfinite.pdf │ │ │ │ │ ├── plotexample.pdf │ │ │ │ │ └── viewports.pdf │ │ │ ├── vignettes │ │ │ │ └── grid.bib │ │ │ ├── DESCRIPTION.in │ │ │ ├── man │ │ │ │ └── grid.refresh.Rd │ │ │ └── R │ │ │ │ └── metric.R │ │ ├── stats │ │ │ ├── src │ │ │ │ ├── stats-win.def │ │ │ │ └── bvalus.f │ │ │ ├── po │ │ │ │ ├── fr.po │ │ │ │ ├── ru.po │ │ │ │ ├── R-fr.po │ │ │ │ └── R-ru.po │ │ │ ├── tests │ │ │ │ ├── ppr.R │ │ │ │ ├── glm.R │ │ │ │ ├── cmdscale.R │ │ │ │ └── NLSstClosest.R │ │ │ ├── demo │ │ │ │ └── 00Index │ │ │ └── DESCRIPTION.in │ │ ├── utils │ │ │ ├── inst │ │ │ │ ├── misc │ │ │ │ │ ├── exDIF.csv │ │ │ │ │ └── exDIF.dif │ │ │ │ └── doc │ │ │ │ │ └── Sweave.pdf │ │ │ ├── po │ │ │ │ ├── R-fr.po │ │ │ │ └── R-ru.po │ │ │ ├── DESCRIPTION.in │ │ │ ├── man │ │ │ │ └── RHOME.Rd │ │ │ └── tests │ │ │ │ └── keepsource.Rnw │ │ ├── datasets │ │ │ ├── NAMESPACE │ │ │ ├── data │ │ │ │ ├── CO2.rda │ │ │ │ ├── npk.rda │ │ │ │ ├── crimtab.rda │ │ │ │ ├── UScitiesD.rda │ │ │ │ ├── Formaldehyde.R │ │ │ │ ├── uspop.R │ │ │ │ ├── women.R │ │ │ │ ├── sleep.R │ │ │ │ ├── BOD.R │ │ │ │ ├── airmiles.R │ │ │ │ ├── lh.R │ │ │ │ ├── pressure.R │ │ │ │ ├── euro.R │ │ │ │ ├── VADeaths.R │ │ │ │ ├── USPersonalExpenditure.R │ │ │ │ ├── discoveries.R │ │ │ │ ├── PlantGrowth.R │ │ │ │ ├── nhtemp.R │ │ │ │ ├── cars.R │ │ │ │ ├── stackloss.R │ │ │ │ └── WWWusage.R │ │ │ └── DESCRIPTION.in │ │ ├── base │ │ │ ├── po │ │ │ │ ├── es.po │ │ │ │ ├── fr.po │ │ │ │ ├── R-fr.po │ │ │ │ ├── R-ru.po │ │ │ │ ├── RGui-de.po │ │ │ │ ├── RGui-es.po │ │ │ │ ├── RGui-fr.po │ │ │ │ ├── RGui-it.po │ │ │ │ ├── RGui-ru.po │ │ │ │ ├── RGui-pt_BR.po │ │ │ │ ├── RGui-zh_CN.po │ │ │ │ └── RGui-zh_TW.po │ │ │ ├── demo │ │ │ │ └── 00Index │ │ │ ├── DESCRIPTION.in │ │ │ └── man │ │ │ │ └── contributors.Rd │ │ ├── tcltk │ │ │ ├── po │ │ │ │ ├── fr.po │ │ │ │ ├── ru.po │ │ │ │ ├── R-fr.po │ │ │ │ └── R-ru.po │ │ │ ├── demo │ │ │ │ └── 00Index │ │ │ └── DESCRIPTION.in │ │ ├── tools │ │ │ ├── po │ │ │ │ ├── fr.po │ │ │ │ ├── ru.po │ │ │ │ ├── R-fr.po │ │ │ │ └── R-ru.po │ │ │ ├── R │ │ │ │ └── sysdata.rda │ │ │ ├── tests │ │ │ │ └── undoc.R │ │ │ └── DESCRIPTION.in │ │ ├── methods │ │ │ ├── po │ │ │ │ ├── fr.po │ │ │ │ ├── ru.po │ │ │ │ ├── R-fr.po │ │ │ │ └── R-ru.po │ │ │ └── DESCRIPTION.in │ │ ├── splines │ │ │ ├── po │ │ │ │ ├── fr.po │ │ │ │ ├── ru.po │ │ │ │ ├── R-fr.po │ │ │ │ └── R-ru.po │ │ │ └── DESCRIPTION.in │ │ ├── compiler │ │ │ ├── po │ │ │ │ └── R-fr.po │ │ │ ├── noweb │ │ │ │ └── README │ │ │ ├── NAMESPACE │ │ │ ├── DESCRIPTION.in │ │ │ └── tests │ │ │ │ └── jit.R │ │ ├── grDevices │ │ │ ├── demo │ │ │ │ └── 00Index │ │ │ ├── po │ │ │ │ ├── fr.po │ │ │ │ ├── ru.po │ │ │ │ ├── R-fr.po │ │ │ │ └── R-ru.po │ │ │ ├── inst │ │ │ │ ├── icc │ │ │ │ │ └── srgb.flate │ │ │ │ └── afm │ │ │ │ │ ├── ArialMT.afm │ │ │ │ │ ├── ArialMT-Bold.afm │ │ │ │ │ ├── ArialMT-Italic.afm │ │ │ │ │ └── ArialMT-BoldItalic.afm │ │ │ ├── src │ │ │ │ └── qdPDF.h │ │ │ └── DESCRIPTION.in │ │ ├── graphics │ │ │ ├── po │ │ │ │ ├── R-fr.po │ │ │ │ ├── R-ru.po │ │ │ │ ├── es.po │ │ │ │ └── fr.po │ │ │ ├── man │ │ │ │ └── figures │ │ │ │ │ ├── mai.pdf │ │ │ │ │ ├── mai.png │ │ │ │ │ ├── oma.pdf │ │ │ │ │ ├── oma.png │ │ │ │ │ ├── pch.pdf │ │ │ │ │ └── pch.png │ │ │ ├── DESCRIPTION.in │ │ │ └── demo │ │ │ │ └── 00Index │ │ ├── parallel │ │ │ ├── po │ │ │ │ ├── R-fr.po │ │ │ │ ├── R-ru.po │ │ │ │ ├── fr.po │ │ │ │ └── ru.po │ │ │ ├── inst │ │ │ │ └── doc │ │ │ │ │ └── parallel.pdf │ │ │ ├── tests │ │ │ │ ├── multicore3.RR │ │ │ │ └── multicore1.RR │ │ │ └── DESCRIPTION.in │ │ ├── stats4 │ │ │ ├── po │ │ │ │ ├── R-fr.po │ │ │ │ └── R-ru.po │ │ │ └── DESCRIPTION.in │ │ └── translations │ │ │ ├── inst │ │ │ ├── da │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── R.mo │ │ │ │ │ ├── RGui.mo │ │ │ │ │ ├── grid.mo │ │ │ │ │ ├── stats.mo │ │ │ │ │ ├── tcltk.mo │ │ │ │ │ ├── tools.mo │ │ │ │ │ ├── R-base.mo │ │ │ │ │ ├── R-grid.mo │ │ │ │ │ ├── R-stats.mo │ │ │ │ │ ├── R-stats4.mo │ │ │ │ │ ├── R-tcltk.mo │ │ │ │ │ ├── R-tools.mo │ │ │ │ │ ├── R-utils.mo │ │ │ │ │ ├── graphics.mo │ │ │ │ │ ├── methods.mo │ │ │ │ │ ├── parallel.mo │ │ │ │ │ ├── splines.mo │ │ │ │ │ ├── R-compiler.mo │ │ │ │ │ ├── R-graphics.mo │ │ │ │ │ ├── R-methods.mo │ │ │ │ │ ├── R-parallel.mo │ │ │ │ │ ├── R-splines.mo │ │ │ │ │ ├── grDevices.mo │ │ │ │ │ └── R-grDevices.mo │ │ │ ├── de │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── R.mo │ │ │ │ │ ├── RGui.mo │ │ │ │ │ ├── grid.mo │ │ │ │ │ ├── stats.mo │ │ │ │ │ ├── tcltk.mo │ │ │ │ │ ├── tools.mo │ │ │ │ │ ├── utils.mo │ │ │ │ │ ├── R-base.mo │ │ │ │ │ ├── R-grid.mo │ │ │ │ │ ├── R-stats.mo │ │ │ │ │ ├── R-stats4.mo │ │ │ │ │ ├── R-tcltk.mo │ │ │ │ │ ├── R-tools.mo │ │ │ │ │ ├── R-utils.mo │ │ │ │ │ ├── graphics.mo │ │ │ │ │ ├── methods.mo │ │ │ │ │ ├── parallel.mo │ │ │ │ │ ├── splines.mo │ │ │ │ │ ├── R-compiler.mo │ │ │ │ │ ├── R-graphics.mo │ │ │ │ │ ├── R-methods.mo │ │ │ │ │ ├── R-parallel.mo │ │ │ │ │ ├── R-splines.mo │ │ │ │ │ ├── grDevices.mo │ │ │ │ │ └── R-grDevices.mo │ │ │ ├── en │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── R.mo │ │ │ ├── es │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── R.mo │ │ │ │ │ ├── RGui.mo │ │ │ │ │ └── graphics.mo │ │ │ ├── fa │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── R.mo │ │ │ │ │ ├── RGui.mo │ │ │ │ │ ├── R-base.mo │ │ │ │ │ └── R-utils.mo │ │ │ ├── fr │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── R.mo │ │ │ │ │ ├── RGui.mo │ │ │ │ │ ├── grid.mo │ │ │ │ │ ├── stats.mo │ │ │ │ │ ├── tcltk.mo │ │ │ │ │ ├── tools.mo │ │ │ │ │ ├── R-base.mo │ │ │ │ │ ├── R-grid.mo │ │ │ │ │ ├── R-stats.mo │ │ │ │ │ ├── R-stats4.mo │ │ │ │ │ ├── R-tcltk.mo │ │ │ │ │ ├── R-tools.mo │ │ │ │ │ ├── R-utils.mo │ │ │ │ │ ├── graphics.mo │ │ │ │ │ ├── methods.mo │ │ │ │ │ ├── parallel.mo │ │ │ │ │ ├── splines.mo │ │ │ │ │ ├── R-compiler.mo │ │ │ │ │ ├── R-graphics.mo │ │ │ │ │ ├── R-methods.mo │ │ │ │ │ ├── R-parallel.mo │ │ │ │ │ ├── R-splines.mo │ │ │ │ │ ├── grDevices.mo │ │ │ │ │ └── R-grDevices.mo │ │ │ ├── it │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── R.mo │ │ │ │ │ ├── RGui.mo │ │ │ │ │ ├── grid.mo │ │ │ │ │ ├── stats.mo │ │ │ │ │ ├── tools.mo │ │ │ │ │ ├── R-base.mo │ │ │ │ │ ├── R-stats.mo │ │ │ │ │ ├── R-stats4.mo │ │ │ │ │ ├── R-tcltk.mo │ │ │ │ │ ├── R-tools.mo │ │ │ │ │ ├── graphics.mo │ │ │ │ │ ├── R-graphics.mo │ │ │ │ │ ├── grDevices.mo │ │ │ │ │ └── R-grDevices.mo │ │ │ ├── ja │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── R.mo │ │ │ │ │ ├── RGui.mo │ │ │ │ │ ├── grid.mo │ │ │ │ │ ├── stats.mo │ │ │ │ │ ├── tcltk.mo │ │ │ │ │ ├── tools.mo │ │ │ │ │ ├── R-base.mo │ │ │ │ │ ├── R-grid.mo │ │ │ │ │ ├── R-stats.mo │ │ │ │ │ ├── R-stats4.mo │ │ │ │ │ ├── R-tcltk.mo │ │ │ │ │ ├── R-tools.mo │ │ │ │ │ ├── R-utils.mo │ │ │ │ │ ├── graphics.mo │ │ │ │ │ ├── methods.mo │ │ │ │ │ ├── splines.mo │ │ │ │ │ ├── R-compiler.mo │ │ │ │ │ ├── R-graphics.mo │ │ │ │ │ ├── R-methods.mo │ │ │ │ │ ├── R-splines.mo │ │ │ │ │ ├── grDevices.mo │ │ │ │ │ └── R-grDevices.mo │ │ │ ├── ko │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── R.mo │ │ │ │ │ ├── RGui.mo │ │ │ │ │ ├── grid.mo │ │ │ │ │ ├── stats.mo │ │ │ │ │ ├── tcltk.mo │ │ │ │ │ ├── tools.mo │ │ │ │ │ ├── utils.mo │ │ │ │ │ ├── R-base.mo │ │ │ │ │ ├── R-grid.mo │ │ │ │ │ ├── R-stats.mo │ │ │ │ │ ├── R-stats4.mo │ │ │ │ │ ├── R-tcltk.mo │ │ │ │ │ ├── R-tools.mo │ │ │ │ │ ├── R-utils.mo │ │ │ │ │ ├── graphics.mo │ │ │ │ │ ├── methods.mo │ │ │ │ │ ├── parallel.mo │ │ │ │ │ ├── splines.mo │ │ │ │ │ ├── R-compiler.mo │ │ │ │ │ ├── R-graphics.mo │ │ │ │ │ ├── R-methods.mo │ │ │ │ │ ├── R-parallel.mo │ │ │ │ │ ├── R-splines.mo │ │ │ │ │ ├── grDevices.mo │ │ │ │ │ └── R-grDevices.mo │ │ │ ├── nn │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── R.mo │ │ │ │ │ ├── RGui.mo │ │ │ │ │ ├── R-base.mo │ │ │ │ │ └── graphics.mo │ │ │ ├── pl │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── R.mo │ │ │ │ │ ├── RGui.mo │ │ │ │ │ ├── grid.mo │ │ │ │ │ ├── stats.mo │ │ │ │ │ ├── tcltk.mo │ │ │ │ │ ├── tools.mo │ │ │ │ │ ├── utils.mo │ │ │ │ │ ├── R-base.mo │ │ │ │ │ ├── R-grid.mo │ │ │ │ │ ├── R-stats.mo │ │ │ │ │ ├── R-stats4.mo │ │ │ │ │ ├── R-tcltk.mo │ │ │ │ │ ├── R-tools.mo │ │ │ │ │ ├── R-utils.mo │ │ │ │ │ ├── graphics.mo │ │ │ │ │ ├── methods.mo │ │ │ │ │ ├── parallel.mo │ │ │ │ │ ├── splines.mo │ │ │ │ │ ├── R-compiler.mo │ │ │ │ │ ├── R-graphics.mo │ │ │ │ │ ├── R-methods.mo │ │ │ │ │ ├── R-parallel.mo │ │ │ │ │ ├── R-splines.mo │ │ │ │ │ ├── grDevices.mo │ │ │ │ │ └── R-grDevices.mo │ │ │ ├── ru │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── R.mo │ │ │ │ │ ├── RGui.mo │ │ │ │ │ ├── grid.mo │ │ │ │ │ ├── stats.mo │ │ │ │ │ ├── tcltk.mo │ │ │ │ │ ├── tools.mo │ │ │ │ │ ├── R-base.mo │ │ │ │ │ ├── R-grid.mo │ │ │ │ │ ├── R-stats.mo │ │ │ │ │ ├── R-stats4.mo │ │ │ │ │ ├── R-tcltk.mo │ │ │ │ │ ├── R-tools.mo │ │ │ │ │ ├── R-utils.mo │ │ │ │ │ ├── graphics.mo │ │ │ │ │ ├── methods.mo │ │ │ │ │ ├── parallel.mo │ │ │ │ │ ├── splines.mo │ │ │ │ │ ├── R-compiler.mo │ │ │ │ │ ├── R-graphics.mo │ │ │ │ │ ├── R-methods.mo │ │ │ │ │ ├── R-parallel.mo │ │ │ │ │ ├── R-splines.mo │ │ │ │ │ ├── grDevices.mo │ │ │ │ │ └── R-grDevices.mo │ │ │ ├── tr │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── R.mo │ │ │ │ │ ├── RGui.mo │ │ │ │ │ ├── R-base.mo │ │ │ │ │ ├── R-stats.mo │ │ │ │ │ ├── R-stats4.mo │ │ │ │ │ ├── R-tools.mo │ │ │ │ │ ├── R-utils.mo │ │ │ │ │ └── graphics.mo │ │ │ ├── en_GB │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── R.mo │ │ │ │ │ ├── grDevices.mo │ │ │ │ │ └── R-grDevices.mo │ │ │ ├── pt_BR │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── R.mo │ │ │ │ │ ├── RGui.mo │ │ │ │ │ ├── grid.mo │ │ │ │ │ ├── stats.mo │ │ │ │ │ ├── tcltk.mo │ │ │ │ │ ├── tools.mo │ │ │ │ │ ├── R-base.mo │ │ │ │ │ ├── R-grid.mo │ │ │ │ │ ├── R-stats.mo │ │ │ │ │ ├── R-tcltk.mo │ │ │ │ │ ├── R-tools.mo │ │ │ │ │ ├── R-utils.mo │ │ │ │ │ ├── methods.mo │ │ │ │ │ ├── splines.mo │ │ │ │ │ ├── R-compiler.mo │ │ │ │ │ ├── R-graphics.mo │ │ │ │ │ ├── R-methods.mo │ │ │ │ │ ├── R-splines.mo │ │ │ │ │ ├── R-stats4.mo │ │ │ │ │ ├── grDevices.mo │ │ │ │ │ ├── graphics.mo │ │ │ │ │ └── R-grDevices.mo │ │ │ ├── zh_CN │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── R.mo │ │ │ │ │ ├── RGui.mo │ │ │ │ │ ├── grid.mo │ │ │ │ │ ├── stats.mo │ │ │ │ │ ├── tcltk.mo │ │ │ │ │ ├── tools.mo │ │ │ │ │ ├── R-base.mo │ │ │ │ │ ├── R-grid.mo │ │ │ │ │ ├── R-stats.mo │ │ │ │ │ ├── R-tcltk.mo │ │ │ │ │ ├── R-tools.mo │ │ │ │ │ ├── R-utils.mo │ │ │ │ │ ├── methods.mo │ │ │ │ │ ├── splines.mo │ │ │ │ │ ├── R-compiler.mo │ │ │ │ │ ├── R-graphics.mo │ │ │ │ │ ├── R-methods.mo │ │ │ │ │ ├── R-parallel.mo │ │ │ │ │ ├── R-splines.mo │ │ │ │ │ ├── R-stats4.mo │ │ │ │ │ ├── grDevices.mo │ │ │ │ │ ├── graphics.mo │ │ │ │ │ ├── parallel.mo │ │ │ │ │ └── R-grDevices.mo │ │ │ ├── zh_TW │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── R.mo │ │ │ │ │ ├── RGui.mo │ │ │ │ │ └── graphics.mo │ │ │ └── en@quot │ │ │ │ └── LC_MESSAGES │ │ │ │ ├── R.mo │ │ │ │ ├── grid.mo │ │ │ │ ├── stats.mo │ │ │ │ ├── tcltk.mo │ │ │ │ ├── tools.mo │ │ │ │ ├── utils.mo │ │ │ │ ├── R-base.mo │ │ │ │ ├── R-grid.mo │ │ │ │ ├── R-stats.mo │ │ │ │ ├── R-stats4.mo │ │ │ │ ├── R-tcltk.mo │ │ │ │ ├── R-tools.mo │ │ │ │ ├── R-utils.mo │ │ │ │ ├── graphics.mo │ │ │ │ ├── methods.mo │ │ │ │ ├── parallel.mo │ │ │ │ ├── splines.mo │ │ │ │ ├── R-compiler.mo │ │ │ │ ├── R-graphics.mo │ │ │ │ ├── R-methods.mo │ │ │ │ ├── R-parallel.mo │ │ │ │ ├── R-splines.mo │ │ │ │ ├── grDevices.mo │ │ │ │ └── R-grDevices.mo │ │ │ └── DESCRIPTION.in │ ├── extra │ │ ├── intl │ │ │ └── VERSION │ │ ├── tzone │ │ │ └── zoneinfo.zip │ │ ├── tre │ │ │ └── tre-match-parallel.c │ │ ├── graphapp │ │ │ ├── R.def │ │ │ └── gif.c │ │ ├── xz │ │ │ └── common │ │ │ │ └── tuklib_config.h │ │ ├── xdr │ │ │ └── Makefile.win │ │ ├── trio │ │ │ └── Makefile.win │ │ ├── blas │ │ │ └── xerbla.c │ │ └── zlib │ │ │ └── inffast.h │ ├── gnuwin32 │ │ ├── windlgs │ │ │ ├── TITLE │ │ │ ├── src │ │ │ │ └── Makevars.win │ │ │ ├── INDEX │ │ │ ├── NAMESPACE │ │ │ └── DESCRIPTION │ │ ├── e_pow.S │ │ ├── installer │ │ │ ├── R.bmp │ │ │ ├── Korean.isl │ │ │ ├── ChineseSimplified.isl │ │ │ ├── ChineseTraditional.isl │ │ │ ├── INSTALL │ │ │ └── types32.iss │ │ ├── front-ends │ │ │ └── R.ico │ │ ├── unicode │ │ │ └── iconv.def │ │ ├── cran │ │ │ ├── release.in │ │ │ └── ReadMe.in │ │ ├── fixed │ │ │ ├── rwver.R │ │ │ ├── GETDESC │ │ │ └── Makeconf │ │ └── getline │ │ │ ├── Makefile │ │ │ ├── testgl.c │ │ │ └── wc_history.h │ ├── nmath │ │ ├── dnt.c │ │ └── standalone │ │ │ ├── README │ │ │ └── libRmath.pc.in │ ├── main │ │ └── g_cntrlify.h │ ├── unix │ │ ├── hpdlfcn.h │ │ └── libR.pc.in │ ├── scripts │ │ ├── REMOVE │ │ ├── SHLIB │ │ ├── Makefile.win │ │ ├── Rdiff │ │ ├── Rprof │ │ ├── build │ │ ├── check │ │ ├── Rd2pdf │ │ ├── Sweave │ │ ├── Stangle │ │ └── Rdconv │ └── modules │ │ ├── Makefile.win │ │ └── internet │ │ └── README ├── VERSION-NICK ├── tests │ ├── Pkgs │ │ ├── pkgA │ │ │ ├── data │ │ │ │ └── nil.R │ │ │ ├── R │ │ │ │ └── pkgA.R │ │ │ ├── NAMESPACE │ │ │ └── DESCRIPTION │ │ ├── pkgB │ │ │ └── NAMESPACE │ │ └── exNSS4 │ │ │ ├── DESCRIPTION │ │ │ └── NAMESPACE │ ├── gct-foot.R │ ├── arima.rda │ ├── nanbug.rda │ ├── utf8-regex.R │ ├── WinUnicode.dat │ ├── reg-tests-1a.R │ ├── EmbeddedNuls.csv │ ├── reg-plot.pdf.save │ ├── reg-tests-2.Rout.save │ ├── reg-plot-latin1.pdf.save │ ├── Embedding │ │ ├── error.R │ │ ├── foo.R │ │ ├── Rtest.c │ │ ├── embeddedRCall.h │ │ ├── Rplot.c │ │ └── RParseEval.c │ ├── ver20-Ex.R.save │ ├── testit-Ex.R.save │ ├── reg-plot-latin1.R │ ├── demos2.R │ ├── datasets.R │ └── reg-BLAS.R ├── share │ ├── sh │ │ └── echo.sh │ ├── make │ │ ├── config.mk │ │ └── clean.mk │ ├── java │ │ ├── getsp.class │ │ └── README │ ├── dictionaries │ │ └── en_stats.rds │ ├── R │ │ ├── tests-startup.R │ │ └── examples-footer.R │ └── texmf │ │ └── tex │ │ └── latex │ │ └── ts1aett.fd ├── SVN-REVISION ├── doc │ ├── FAQ │ ├── NEWS.pdf │ ├── html │ │ ├── up.jpg │ │ ├── left.jpg │ │ ├── logo.jpg │ │ ├── right.jpg │ │ ├── favicon.ico │ │ ├── logosm.jpg │ │ └── packages-head-utf8.html │ └── manual │ │ ├── images │ │ ├── QQ.pdf │ │ ├── QQ.png │ │ ├── ecdf.pdf │ │ ├── ecdf.png │ │ ├── hist.pdf │ │ ├── hist.png │ │ ├── ice.pdf │ │ ├── ice.png │ │ ├── fig11.pdf │ │ ├── fig11.png │ │ ├── fig12.pdf │ │ └── fig12.png │ │ ├── refman.bot │ │ ├── quot.sed │ │ ├── dir │ │ └── ISBN ├── tools │ ├── help2man.pl │ ├── GETMAKEVAL │ ├── copy-if-change │ └── move-if-change ├── ChangeLog └── etc │ └── javaconf.in ├── RRO-src ├── OSX │ ├── Mac-GUI │ │ ├── LANGUAGES │ │ ├── RLogo.png │ │ ├── RLogo.icns │ │ ├── add_col.pict │ │ ├── add_row.pict │ │ ├── images │ │ │ ├── Prefs.tiff │ │ │ ├── RDoc.tiff │ │ │ ├── RInput.png │ │ │ ├── Rdata.icns │ │ │ ├── Rdoc.icns │ │ │ ├── Rrun.icns │ │ │ ├── X11.icns │ │ │ ├── logs.icns │ │ │ ├── miscPP.png │ │ │ ├── objRem.png │ │ │ ├── quit.png │ │ │ ├── stop.tiff │ │ │ ├── add_col.tiff │ │ │ ├── add_row.tiff │ │ │ ├── colors.tiff │ │ │ ├── history.png │ │ │ ├── objEdit.tiff │ │ │ ├── quartz.tiff │ │ │ ├── refresh.png │ │ │ ├── rem_col.tiff │ │ │ ├── rem_row.tiff │ │ │ ├── sourceR.tiff │ │ │ ├── Folding Top.png │ │ │ ├── colorsPP.tiff │ │ │ ├── emptyDoc.tiff │ │ │ ├── quartzPP.tiff │ │ │ ├── lock-locked.tiff │ │ │ ├── Folding Bottom.png │ │ │ ├── lock-unlocked.tiff │ │ │ ├── Folding Collapsed.png │ │ │ ├── Folding Top Hoover.png │ │ │ ├── Folding Bottom Hoover.png │ │ │ ├── Folding Top Pressed.png │ │ │ ├── NewDocumentItemImage.tiff │ │ │ ├── Revolution R Opendoc.icns │ │ │ ├── Revolution R Openrun.icns │ │ │ ├── other images │ │ │ │ ├── add_col.pict │ │ │ │ ├── add_row.pict │ │ │ │ ├── del_col.pict │ │ │ │ └── del_row.pict │ │ │ ├── Folding Bottom Pressed.png │ │ │ ├── LoadDocumentItemImage.tiff │ │ │ ├── Revolution R Opendata.icns │ │ │ ├── SaveDocumentItemImage.tiff │ │ │ ├── Folding Collapsed Hoover.png │ │ │ └── Folding Collapsed Pressed.png │ │ ├── Translated.strings │ │ │ ├── RConsole.de.strings │ │ │ ├── RConsole.fr.strings │ │ │ ├── RConsole.it.strings │ │ │ ├── RConsole.ja.strings │ │ │ ├── RConsole.nl.strings │ │ │ ├── RQuartz.ja.strings │ │ │ ├── RQuartz.nl.strings │ │ │ └── README │ │ ├── Revolution R OpenLogo.icns │ │ ├── Tools │ │ │ └── sush.c │ │ ├── Revolution R Open_Prefix.pch │ │ ├── Microsoft R Open.xcodeproj │ │ │ └── project.xcworkspace │ │ │ │ ├── xcuserdata │ │ │ │ └── nathan.xcuserdatad │ │ │ │ │ └── UserInterfaceState.xcuserstate │ │ │ │ └── contents.xcworkspacedata │ │ ├── QuartzCocoaDocument.h │ │ └── English.lproj │ │ │ └── locversion.plist │ ├── NcFTP.tar.gz │ └── project │ │ ├── clarkbg.png │ │ └── clarkInstall.png ├── files │ ├── windows │ │ ├── sed.exe │ │ ├── checkpoint.R │ │ ├── clarkSmall.bmp │ │ ├── REV_14419_Clark_2C.ico │ │ └── connector │ │ │ ├── clarkSmall.bmp │ │ │ └── REV_14419_Clark_2C.ico │ └── common │ │ ├── ThirdPartyNotices.pdf │ │ └── connector │ │ └── ThirdPartyNotices.pdf ├── test │ ├── R-benchmark-24.R │ ├── standardRTests.R │ └── modelTest.R ├── buildFiles │ ├── .nuget │ │ └── packages.config │ ├── RevoUtils │ │ └── packages.config │ ├── packages-windows.json │ └── packages-linux.json ├── old │ ├── SLES10 │ │ └── install.sh │ ├── SLES11 │ │ └── install.sh │ ├── openSUSE │ │ ├── install.sh │ │ └── build.sh │ ├── CentOS │ │ ├── install.sh │ │ └── build.sh │ └── Ubuntu │ │ ├── install.sh │ │ └── build.sh └── test-bundle │ └── build.sh └── BUILD.md /R-src/VERSION: -------------------------------------------------------------------------------- 1 | 3.2.5 2 | -------------------------------------------------------------------------------- /R-src/src/include/stamp-h.in: -------------------------------------------------------------------------------- 1 | timestamp 2 | -------------------------------------------------------------------------------- /R-src/VERSION-NICK: -------------------------------------------------------------------------------- 1 | Very, Very Secure Dishes 2 | -------------------------------------------------------------------------------- /R-src/tests/Pkgs/pkgA/data/nil.R: -------------------------------------------------------------------------------- 1 | nilData <- NULL 2 | -------------------------------------------------------------------------------- /R-src/src/library/Recommended/MASS.tgz: -------------------------------------------------------------------------------- 1 | MASS_7.3-45.tar.gz -------------------------------------------------------------------------------- /R-src/src/library/Recommended/boot.tgz: -------------------------------------------------------------------------------- 1 | boot_1.3-18.tar.gz -------------------------------------------------------------------------------- /R-src/src/library/Recommended/class.tgz: -------------------------------------------------------------------------------- 1 | class_7.3-14.tar.gz -------------------------------------------------------------------------------- /R-src/src/library/Recommended/mgcv.tgz: -------------------------------------------------------------------------------- 1 | mgcv_1.8-12.tar.gz -------------------------------------------------------------------------------- /R-src/src/library/Recommended/nlme.tgz: -------------------------------------------------------------------------------- 1 | nlme_3.1-125.tar.gz -------------------------------------------------------------------------------- /R-src/src/library/Recommended/nnet.tgz: -------------------------------------------------------------------------------- 1 | nnet_7.3-12.tar.gz -------------------------------------------------------------------------------- /R-src/src/library/Recommended/rpart.tgz: -------------------------------------------------------------------------------- 1 | rpart_4.1-10.tar.gz -------------------------------------------------------------------------------- /R-src/src/library/Recommended/Matrix.tgz: -------------------------------------------------------------------------------- 1 | Matrix_1.2-4.tar.gz -------------------------------------------------------------------------------- /R-src/src/library/Recommended/cluster.tgz: -------------------------------------------------------------------------------- 1 | cluster_2.0.3.tar.gz -------------------------------------------------------------------------------- /R-src/src/library/Recommended/foreign.tgz: -------------------------------------------------------------------------------- 1 | foreign_0.8-66.tar.gz -------------------------------------------------------------------------------- /R-src/src/library/Recommended/lattice.tgz: -------------------------------------------------------------------------------- 1 | lattice_0.20-33.tar.gz -------------------------------------------------------------------------------- /R-src/src/library/Recommended/spatial.tgz: -------------------------------------------------------------------------------- 1 | spatial_7.3-11.tar.gz -------------------------------------------------------------------------------- /R-src/share/sh/echo.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | cat < 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /R-src/src/library/datasets/data/crimtab.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/datasets/data/crimtab.rda -------------------------------------------------------------------------------- /R-src/src/library/grid/inst/doc/locndimn.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/grid/inst/doc/locndimn.pdf -------------------------------------------------------------------------------- /R-src/src/library/grid/inst/doc/moveline.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/grid/inst/doc/moveline.pdf -------------------------------------------------------------------------------- /R-src/src/library/grid/inst/doc/rotated.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/grid/inst/doc/rotated.pdf -------------------------------------------------------------------------------- /R-src/src/library/grid/inst/doc/saveload.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/grid/inst/doc/saveload.pdf -------------------------------------------------------------------------------- /R-src/src/library/grid/inst/doc/sharing.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/grid/inst/doc/sharing.pdf -------------------------------------------------------------------------------- /R-src/src/library/utils/inst/doc/Sweave.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/utils/inst/doc/Sweave.pdf -------------------------------------------------------------------------------- /R-src/src/nmath/standalone/README: -------------------------------------------------------------------------------- 1 | The instructions formerly in this file have been moved to the 2 | 'R Installation and Administration' manual. 3 | -------------------------------------------------------------------------------- /RRO-src/OSX/Mac-GUI/images/lock-locked.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/RRO-src/OSX/Mac-GUI/images/lock-locked.tiff -------------------------------------------------------------------------------- /RRO-src/files/windows/REV_14419_Clark_2C.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/RRO-src/files/windows/REV_14419_Clark_2C.ico -------------------------------------------------------------------------------- /R-src/src/library/datasets/data/UScitiesD.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/datasets/data/UScitiesD.rda -------------------------------------------------------------------------------- /R-src/src/library/grDevices/inst/icc/srgb.flate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/grDevices/inst/icc/srgb.flate -------------------------------------------------------------------------------- /R-src/src/library/graphics/man/figures/mai.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/graphics/man/figures/mai.pdf -------------------------------------------------------------------------------- /R-src/src/library/graphics/man/figures/mai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/graphics/man/figures/mai.png -------------------------------------------------------------------------------- /R-src/src/library/graphics/man/figures/oma.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/graphics/man/figures/oma.pdf -------------------------------------------------------------------------------- /R-src/src/library/graphics/man/figures/oma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/graphics/man/figures/oma.png -------------------------------------------------------------------------------- /R-src/src/library/graphics/man/figures/pch.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/graphics/man/figures/pch.pdf -------------------------------------------------------------------------------- /R-src/src/library/graphics/man/figures/pch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/graphics/man/figures/pch.png -------------------------------------------------------------------------------- /R-src/src/library/grid/inst/doc/displaylist.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/grid/inst/doc/displaylist.pdf -------------------------------------------------------------------------------- /R-src/src/library/grid/inst/doc/interactive.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/grid/inst/doc/interactive.pdf -------------------------------------------------------------------------------- /R-src/src/library/grid/inst/doc/nonfinite.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/grid/inst/doc/nonfinite.pdf -------------------------------------------------------------------------------- /R-src/src/library/grid/inst/doc/plotexample.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/grid/inst/doc/plotexample.pdf -------------------------------------------------------------------------------- /R-src/src/library/grid/inst/doc/viewports.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/grid/inst/doc/viewports.pdf -------------------------------------------------------------------------------- /R-src/src/unix/hpdlfcn.h: -------------------------------------------------------------------------------- 1 | void *dlopen(const char *, int); 2 | void *dlsym(void *, const char *); 3 | int dlclose(void *); 4 | char *dlerror(void); 5 | -------------------------------------------------------------------------------- /RRO-src/OSX/Mac-GUI/Revolution R OpenLogo.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/RRO-src/OSX/Mac-GUI/Revolution R OpenLogo.icns -------------------------------------------------------------------------------- /RRO-src/OSX/Mac-GUI/images/Folding Bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/RRO-src/OSX/Mac-GUI/images/Folding Bottom.png -------------------------------------------------------------------------------- /RRO-src/OSX/Mac-GUI/images/lock-unlocked.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/RRO-src/OSX/Mac-GUI/images/lock-unlocked.tiff -------------------------------------------------------------------------------- /RRO-src/files/windows/connector/clarkSmall.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/RRO-src/files/windows/connector/clarkSmall.bmp -------------------------------------------------------------------------------- /R-src/doc/manual/refman.bot: -------------------------------------------------------------------------------- 1 | \cleardoublepage 2 | \printindex 3 | \end{document} 4 | 5 | %%% Local variables: *** 6 | %%% mode: LaTeX *** 7 | %%% End: *** 8 | -------------------------------------------------------------------------------- /R-src/src/library/Recommended/MASS_7.3-45.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/Recommended/MASS_7.3-45.tar.gz -------------------------------------------------------------------------------- /R-src/src/library/Recommended/Matrix_1.2-4.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/Recommended/Matrix_1.2-4.tar.gz -------------------------------------------------------------------------------- /R-src/src/library/Recommended/boot_1.3-18.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/Recommended/boot_1.3-18.tar.gz -------------------------------------------------------------------------------- /R-src/src/library/Recommended/class_7.3-14.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/Recommended/class_7.3-14.tar.gz -------------------------------------------------------------------------------- /R-src/src/library/Recommended/mgcv_1.8-12.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/Recommended/mgcv_1.8-12.tar.gz -------------------------------------------------------------------------------- /R-src/src/library/Recommended/nlme_3.1-125.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/Recommended/nlme_3.1-125.tar.gz -------------------------------------------------------------------------------- /R-src/src/library/Recommended/nnet_7.3-12.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/Recommended/nnet_7.3-12.tar.gz -------------------------------------------------------------------------------- /R-src/src/library/Recommended/rpart_4.1-10.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/Recommended/rpart_4.1-10.tar.gz -------------------------------------------------------------------------------- /R-src/src/library/compiler/noweb/README: -------------------------------------------------------------------------------- 1 | The command 2 | 3 | notangle -Rcmp.R compiler.nw 4 | 5 | extracts the file cmp.R to standard output. 6 | 7 | -------------------------------------------------------------------------------- /R-src/src/library/grDevices/inst/afm/ArialMT.afm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/grDevices/inst/afm/ArialMT.afm -------------------------------------------------------------------------------- /R-src/src/library/parallel/inst/doc/parallel.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/parallel/inst/doc/parallel.pdf -------------------------------------------------------------------------------- /R-src/tests/Embedding/foo.R: -------------------------------------------------------------------------------- 1 | foo <- 2 | function(...) 3 | { 4 | args <- list(...) 5 | print(args) 6 | print(names(args)) 7 | TRUE 8 | } 9 | -------------------------------------------------------------------------------- /RRO-src/OSX/Mac-GUI/images/Folding Collapsed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/RRO-src/OSX/Mac-GUI/images/Folding Collapsed.png -------------------------------------------------------------------------------- /RRO-src/OSX/Mac-GUI/images/Folding Top Hoover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/RRO-src/OSX/Mac-GUI/images/Folding Top Hoover.png -------------------------------------------------------------------------------- /RRO-src/buildFiles/.nuget/packages.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /R-src/src/gnuwin32/installer/ChineseSimplified.isl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/gnuwin32/installer/ChineseSimplified.isl -------------------------------------------------------------------------------- /R-src/src/gnuwin32/installer/ChineseTraditional.isl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/gnuwin32/installer/ChineseTraditional.isl -------------------------------------------------------------------------------- /R-src/src/gnuwin32/windlgs/NAMESPACE: -------------------------------------------------------------------------------- 1 | useDynLib("windlgs") 2 | 3 | import(stats) 4 | 5 | export(del.ttest, menu.ttest, menu.ttest2, menu.ttest3) 6 | 7 | 8 | -------------------------------------------------------------------------------- /R-src/src/library/Recommended/cluster_2.0.3.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/Recommended/cluster_2.0.3.tar.gz -------------------------------------------------------------------------------- /R-src/src/library/Recommended/foreign_0.8-66.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/Recommended/foreign_0.8-66.tar.gz -------------------------------------------------------------------------------- /R-src/src/library/Recommended/lattice_0.20-33.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/Recommended/lattice_0.20-33.tar.gz -------------------------------------------------------------------------------- /R-src/src/library/Recommended/spatial_7.3-11.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/Recommended/spatial_7.3-11.tar.gz -------------------------------------------------------------------------------- /R-src/src/library/Recommended/survival_2.38-3.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/Recommended/survival_2.38-3.tar.gz -------------------------------------------------------------------------------- /RRO-src/OSX/Mac-GUI/images/Folding Bottom Hoover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/RRO-src/OSX/Mac-GUI/images/Folding Bottom Hoover.png -------------------------------------------------------------------------------- /RRO-src/OSX/Mac-GUI/images/Folding Top Pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/RRO-src/OSX/Mac-GUI/images/Folding Top Pressed.png -------------------------------------------------------------------------------- /RRO-src/OSX/Mac-GUI/images/NewDocumentItemImage.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/RRO-src/OSX/Mac-GUI/images/NewDocumentItemImage.tiff -------------------------------------------------------------------------------- /RRO-src/OSX/Mac-GUI/images/Revolution R Opendoc.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/RRO-src/OSX/Mac-GUI/images/Revolution R Opendoc.icns -------------------------------------------------------------------------------- /RRO-src/OSX/Mac-GUI/images/Revolution R Openrun.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/RRO-src/OSX/Mac-GUI/images/Revolution R Openrun.icns -------------------------------------------------------------------------------- /RRO-src/OSX/Mac-GUI/images/other images/add_col.pict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/RRO-src/OSX/Mac-GUI/images/other images/add_col.pict -------------------------------------------------------------------------------- /RRO-src/OSX/Mac-GUI/images/other images/add_row.pict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/RRO-src/OSX/Mac-GUI/images/other images/add_row.pict -------------------------------------------------------------------------------- /RRO-src/OSX/Mac-GUI/images/other images/del_col.pict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/RRO-src/OSX/Mac-GUI/images/other images/del_col.pict -------------------------------------------------------------------------------- /RRO-src/OSX/Mac-GUI/images/other images/del_row.pict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/RRO-src/OSX/Mac-GUI/images/other images/del_row.pict -------------------------------------------------------------------------------- /RRO-src/files/common/connector/ThirdPartyNotices.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/RRO-src/files/common/connector/ThirdPartyNotices.pdf -------------------------------------------------------------------------------- /R-src/src/library/Recommended/codetools_0.2-14.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/Recommended/codetools_0.2-14.tar.gz -------------------------------------------------------------------------------- /R-src/src/library/grDevices/inst/afm/ArialMT-Bold.afm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/grDevices/inst/afm/ArialMT-Bold.afm -------------------------------------------------------------------------------- /RRO-src/OSX/Mac-GUI/images/Folding Bottom Pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/RRO-src/OSX/Mac-GUI/images/Folding Bottom Pressed.png -------------------------------------------------------------------------------- /RRO-src/OSX/Mac-GUI/images/LoadDocumentItemImage.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/RRO-src/OSX/Mac-GUI/images/LoadDocumentItemImage.tiff -------------------------------------------------------------------------------- /RRO-src/OSX/Mac-GUI/images/Revolution R Opendata.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/RRO-src/OSX/Mac-GUI/images/Revolution R Opendata.icns -------------------------------------------------------------------------------- /RRO-src/OSX/Mac-GUI/images/SaveDocumentItemImage.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/RRO-src/OSX/Mac-GUI/images/SaveDocumentItemImage.tiff -------------------------------------------------------------------------------- /RRO-src/files/windows/connector/REV_14419_Clark_2C.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/RRO-src/files/windows/connector/REV_14419_Clark_2C.ico -------------------------------------------------------------------------------- /R-src/src/library/Recommended/KernSmooth_2.23-15.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/Recommended/KernSmooth_2.23-15.tar.gz -------------------------------------------------------------------------------- /R-src/src/library/grDevices/inst/afm/ArialMT-Italic.afm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/grDevices/inst/afm/ArialMT-Italic.afm -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/da/LC_MESSAGES/R.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/da/LC_MESSAGES/R.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/de/LC_MESSAGES/R.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/de/LC_MESSAGES/R.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/en/LC_MESSAGES/R.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/en/LC_MESSAGES/R.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/es/LC_MESSAGES/R.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/es/LC_MESSAGES/R.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/fa/LC_MESSAGES/R.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/fa/LC_MESSAGES/R.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/fr/LC_MESSAGES/R.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/fr/LC_MESSAGES/R.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/it/LC_MESSAGES/R.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/it/LC_MESSAGES/R.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/ja/LC_MESSAGES/R.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/ja/LC_MESSAGES/R.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/ko/LC_MESSAGES/R.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/ko/LC_MESSAGES/R.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/nn/LC_MESSAGES/R.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/nn/LC_MESSAGES/R.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/pl/LC_MESSAGES/R.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/pl/LC_MESSAGES/R.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/ru/LC_MESSAGES/R.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/ru/LC_MESSAGES/R.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/tr/LC_MESSAGES/R.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/tr/LC_MESSAGES/R.mo -------------------------------------------------------------------------------- /R-src/tests/ver20-Ex.R.save: -------------------------------------------------------------------------------- 1 | ### Name: ver20 2 | ### Title: Johnson & Johnson, $ _ ### ^ ~ 3 | 4 | ### ** Examples 5 | 6 | "\\r\\n" 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /RRO-src/OSX/Mac-GUI/images/Folding Collapsed Hoover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/RRO-src/OSX/Mac-GUI/images/Folding Collapsed Hoover.png -------------------------------------------------------------------------------- /RRO-src/OSX/Mac-GUI/images/Folding Collapsed Pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/RRO-src/OSX/Mac-GUI/images/Folding Collapsed Pressed.png -------------------------------------------------------------------------------- /R-src/share/R/tests-startup.R: -------------------------------------------------------------------------------- 1 | ## A custom startup file for tests 2 | ## Run as if a system Rprofile, so no packages, no assignments 3 | options(useFancyQuotes = FALSE) 4 | 5 | -------------------------------------------------------------------------------- /R-src/src/library/grDevices/inst/afm/ArialMT-BoldItalic.afm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/grDevices/inst/afm/ArialMT-BoldItalic.afm -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/da/LC_MESSAGES/RGui.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/da/LC_MESSAGES/RGui.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/da/LC_MESSAGES/grid.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/da/LC_MESSAGES/grid.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/da/LC_MESSAGES/stats.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/da/LC_MESSAGES/stats.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/da/LC_MESSAGES/tcltk.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/da/LC_MESSAGES/tcltk.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/da/LC_MESSAGES/tools.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/da/LC_MESSAGES/tools.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/de/LC_MESSAGES/RGui.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/de/LC_MESSAGES/RGui.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/de/LC_MESSAGES/grid.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/de/LC_MESSAGES/grid.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/de/LC_MESSAGES/stats.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/de/LC_MESSAGES/stats.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/de/LC_MESSAGES/tcltk.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/de/LC_MESSAGES/tcltk.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/de/LC_MESSAGES/tools.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/de/LC_MESSAGES/tools.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/de/LC_MESSAGES/utils.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/de/LC_MESSAGES/utils.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/en_GB/LC_MESSAGES/R.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/en_GB/LC_MESSAGES/R.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/es/LC_MESSAGES/RGui.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/es/LC_MESSAGES/RGui.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/fa/LC_MESSAGES/RGui.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/fa/LC_MESSAGES/RGui.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/fr/LC_MESSAGES/RGui.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/fr/LC_MESSAGES/RGui.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/fr/LC_MESSAGES/grid.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/fr/LC_MESSAGES/grid.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/fr/LC_MESSAGES/stats.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/fr/LC_MESSAGES/stats.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/fr/LC_MESSAGES/tcltk.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/fr/LC_MESSAGES/tcltk.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/fr/LC_MESSAGES/tools.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/fr/LC_MESSAGES/tools.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/it/LC_MESSAGES/RGui.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/it/LC_MESSAGES/RGui.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/it/LC_MESSAGES/grid.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/it/LC_MESSAGES/grid.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/it/LC_MESSAGES/stats.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/it/LC_MESSAGES/stats.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/it/LC_MESSAGES/tools.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/it/LC_MESSAGES/tools.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/ja/LC_MESSAGES/RGui.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/ja/LC_MESSAGES/RGui.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/ja/LC_MESSAGES/grid.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/ja/LC_MESSAGES/grid.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/ja/LC_MESSAGES/stats.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/ja/LC_MESSAGES/stats.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/ja/LC_MESSAGES/tcltk.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/ja/LC_MESSAGES/tcltk.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/ja/LC_MESSAGES/tools.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/ja/LC_MESSAGES/tools.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/ko/LC_MESSAGES/RGui.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/ko/LC_MESSAGES/RGui.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/ko/LC_MESSAGES/grid.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/ko/LC_MESSAGES/grid.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/ko/LC_MESSAGES/stats.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/ko/LC_MESSAGES/stats.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/ko/LC_MESSAGES/tcltk.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/ko/LC_MESSAGES/tcltk.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/ko/LC_MESSAGES/tools.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/ko/LC_MESSAGES/tools.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/ko/LC_MESSAGES/utils.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/ko/LC_MESSAGES/utils.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/nn/LC_MESSAGES/RGui.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/nn/LC_MESSAGES/RGui.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/pl/LC_MESSAGES/RGui.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/pl/LC_MESSAGES/RGui.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/pl/LC_MESSAGES/grid.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/pl/LC_MESSAGES/grid.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/pl/LC_MESSAGES/stats.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/pl/LC_MESSAGES/stats.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/pl/LC_MESSAGES/tcltk.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/pl/LC_MESSAGES/tcltk.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/pl/LC_MESSAGES/tools.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/pl/LC_MESSAGES/tools.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/pl/LC_MESSAGES/utils.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/pl/LC_MESSAGES/utils.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/pt_BR/LC_MESSAGES/R.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/pt_BR/LC_MESSAGES/R.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/ru/LC_MESSAGES/RGui.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/ru/LC_MESSAGES/RGui.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/ru/LC_MESSAGES/grid.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/ru/LC_MESSAGES/grid.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/ru/LC_MESSAGES/stats.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/ru/LC_MESSAGES/stats.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/ru/LC_MESSAGES/tcltk.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/ru/LC_MESSAGES/tcltk.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/ru/LC_MESSAGES/tools.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/ru/LC_MESSAGES/tools.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/tr/LC_MESSAGES/RGui.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/tr/LC_MESSAGES/RGui.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/zh_CN/LC_MESSAGES/R.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/zh_CN/LC_MESSAGES/R.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/zh_TW/LC_MESSAGES/R.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/zh_TW/LC_MESSAGES/R.mo -------------------------------------------------------------------------------- /R-src/src/library/compiler/NAMESPACE: -------------------------------------------------------------------------------- 1 | export(cmpfun,cmpfile,loadcmp,compile,disassemble) 2 | export(enableJIT,compilePKGS) 3 | export(getCompilerOption,setCompilerOptions) 4 | 5 | -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/da/LC_MESSAGES/R-base.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/da/LC_MESSAGES/R-base.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/da/LC_MESSAGES/R-grid.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/da/LC_MESSAGES/R-grid.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/da/LC_MESSAGES/R-stats.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/da/LC_MESSAGES/R-stats.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/da/LC_MESSAGES/R-stats4.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/da/LC_MESSAGES/R-stats4.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/da/LC_MESSAGES/R-tcltk.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/da/LC_MESSAGES/R-tcltk.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/da/LC_MESSAGES/R-tools.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/da/LC_MESSAGES/R-tools.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/da/LC_MESSAGES/R-utils.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/da/LC_MESSAGES/R-utils.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/da/LC_MESSAGES/graphics.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/da/LC_MESSAGES/graphics.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/da/LC_MESSAGES/methods.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/da/LC_MESSAGES/methods.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/da/LC_MESSAGES/parallel.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/da/LC_MESSAGES/parallel.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/da/LC_MESSAGES/splines.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/da/LC_MESSAGES/splines.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/de/LC_MESSAGES/R-base.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/de/LC_MESSAGES/R-base.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/de/LC_MESSAGES/R-grid.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/de/LC_MESSAGES/R-grid.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/de/LC_MESSAGES/R-stats.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/de/LC_MESSAGES/R-stats.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/de/LC_MESSAGES/R-stats4.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/de/LC_MESSAGES/R-stats4.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/de/LC_MESSAGES/R-tcltk.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/de/LC_MESSAGES/R-tcltk.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/de/LC_MESSAGES/R-tools.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/de/LC_MESSAGES/R-tools.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/de/LC_MESSAGES/R-utils.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/de/LC_MESSAGES/R-utils.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/de/LC_MESSAGES/graphics.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/de/LC_MESSAGES/graphics.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/de/LC_MESSAGES/methods.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/de/LC_MESSAGES/methods.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/de/LC_MESSAGES/parallel.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/de/LC_MESSAGES/parallel.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/de/LC_MESSAGES/splines.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/de/LC_MESSAGES/splines.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/en@quot/LC_MESSAGES/R.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/en@quot/LC_MESSAGES/R.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/es/LC_MESSAGES/graphics.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/es/LC_MESSAGES/graphics.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/fa/LC_MESSAGES/R-base.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/fa/LC_MESSAGES/R-base.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/fa/LC_MESSAGES/R-utils.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/fa/LC_MESSAGES/R-utils.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/fr/LC_MESSAGES/R-base.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/fr/LC_MESSAGES/R-base.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/fr/LC_MESSAGES/R-grid.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/fr/LC_MESSAGES/R-grid.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/fr/LC_MESSAGES/R-stats.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/fr/LC_MESSAGES/R-stats.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/fr/LC_MESSAGES/R-stats4.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/fr/LC_MESSAGES/R-stats4.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/fr/LC_MESSAGES/R-tcltk.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/fr/LC_MESSAGES/R-tcltk.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/fr/LC_MESSAGES/R-tools.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/fr/LC_MESSAGES/R-tools.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/fr/LC_MESSAGES/R-utils.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/fr/LC_MESSAGES/R-utils.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/fr/LC_MESSAGES/graphics.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/fr/LC_MESSAGES/graphics.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/fr/LC_MESSAGES/methods.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/fr/LC_MESSAGES/methods.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/fr/LC_MESSAGES/parallel.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/fr/LC_MESSAGES/parallel.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/fr/LC_MESSAGES/splines.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/fr/LC_MESSAGES/splines.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/it/LC_MESSAGES/R-base.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/it/LC_MESSAGES/R-base.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/it/LC_MESSAGES/R-stats.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/it/LC_MESSAGES/R-stats.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/it/LC_MESSAGES/R-stats4.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/it/LC_MESSAGES/R-stats4.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/it/LC_MESSAGES/R-tcltk.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/it/LC_MESSAGES/R-tcltk.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/it/LC_MESSAGES/R-tools.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/it/LC_MESSAGES/R-tools.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/it/LC_MESSAGES/graphics.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/it/LC_MESSAGES/graphics.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/ja/LC_MESSAGES/R-base.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/ja/LC_MESSAGES/R-base.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/ja/LC_MESSAGES/R-grid.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/ja/LC_MESSAGES/R-grid.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/ja/LC_MESSAGES/R-stats.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/ja/LC_MESSAGES/R-stats.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/ja/LC_MESSAGES/R-stats4.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/ja/LC_MESSAGES/R-stats4.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/ja/LC_MESSAGES/R-tcltk.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/ja/LC_MESSAGES/R-tcltk.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/ja/LC_MESSAGES/R-tools.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/ja/LC_MESSAGES/R-tools.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/ja/LC_MESSAGES/R-utils.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/ja/LC_MESSAGES/R-utils.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/ja/LC_MESSAGES/graphics.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/ja/LC_MESSAGES/graphics.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/ja/LC_MESSAGES/methods.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/ja/LC_MESSAGES/methods.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/ja/LC_MESSAGES/splines.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/ja/LC_MESSAGES/splines.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/ko/LC_MESSAGES/R-base.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/ko/LC_MESSAGES/R-base.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/ko/LC_MESSAGES/R-grid.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/ko/LC_MESSAGES/R-grid.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/ko/LC_MESSAGES/R-stats.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/ko/LC_MESSAGES/R-stats.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/ko/LC_MESSAGES/R-stats4.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/ko/LC_MESSAGES/R-stats4.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/ko/LC_MESSAGES/R-tcltk.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/ko/LC_MESSAGES/R-tcltk.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/ko/LC_MESSAGES/R-tools.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/ko/LC_MESSAGES/R-tools.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/ko/LC_MESSAGES/R-utils.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/ko/LC_MESSAGES/R-utils.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/ko/LC_MESSAGES/graphics.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/ko/LC_MESSAGES/graphics.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/ko/LC_MESSAGES/methods.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/ko/LC_MESSAGES/methods.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/ko/LC_MESSAGES/parallel.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/ko/LC_MESSAGES/parallel.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/ko/LC_MESSAGES/splines.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/ko/LC_MESSAGES/splines.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/nn/LC_MESSAGES/R-base.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/nn/LC_MESSAGES/R-base.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/nn/LC_MESSAGES/graphics.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/nn/LC_MESSAGES/graphics.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/pl/LC_MESSAGES/R-base.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/pl/LC_MESSAGES/R-base.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/pl/LC_MESSAGES/R-grid.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/pl/LC_MESSAGES/R-grid.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/pl/LC_MESSAGES/R-stats.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/pl/LC_MESSAGES/R-stats.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/pl/LC_MESSAGES/R-stats4.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/pl/LC_MESSAGES/R-stats4.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/pl/LC_MESSAGES/R-tcltk.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/pl/LC_MESSAGES/R-tcltk.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/pl/LC_MESSAGES/R-tools.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/pl/LC_MESSAGES/R-tools.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/pl/LC_MESSAGES/R-utils.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/pl/LC_MESSAGES/R-utils.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/pl/LC_MESSAGES/graphics.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/pl/LC_MESSAGES/graphics.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/pl/LC_MESSAGES/methods.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/pl/LC_MESSAGES/methods.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/pl/LC_MESSAGES/parallel.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/pl/LC_MESSAGES/parallel.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/pl/LC_MESSAGES/splines.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/pl/LC_MESSAGES/splines.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/pt_BR/LC_MESSAGES/RGui.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/pt_BR/LC_MESSAGES/RGui.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/pt_BR/LC_MESSAGES/grid.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/pt_BR/LC_MESSAGES/grid.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/pt_BR/LC_MESSAGES/stats.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/pt_BR/LC_MESSAGES/stats.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/pt_BR/LC_MESSAGES/tcltk.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/pt_BR/LC_MESSAGES/tcltk.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/pt_BR/LC_MESSAGES/tools.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/pt_BR/LC_MESSAGES/tools.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/ru/LC_MESSAGES/R-base.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/ru/LC_MESSAGES/R-base.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/ru/LC_MESSAGES/R-grid.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/ru/LC_MESSAGES/R-grid.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/ru/LC_MESSAGES/R-stats.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/ru/LC_MESSAGES/R-stats.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/ru/LC_MESSAGES/R-stats4.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/ru/LC_MESSAGES/R-stats4.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/ru/LC_MESSAGES/R-tcltk.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/ru/LC_MESSAGES/R-tcltk.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/ru/LC_MESSAGES/R-tools.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/ru/LC_MESSAGES/R-tools.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/ru/LC_MESSAGES/R-utils.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/ru/LC_MESSAGES/R-utils.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/ru/LC_MESSAGES/graphics.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/ru/LC_MESSAGES/graphics.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/ru/LC_MESSAGES/methods.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/ru/LC_MESSAGES/methods.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/ru/LC_MESSAGES/parallel.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/ru/LC_MESSAGES/parallel.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/ru/LC_MESSAGES/splines.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/ru/LC_MESSAGES/splines.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/tr/LC_MESSAGES/R-base.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/tr/LC_MESSAGES/R-base.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/tr/LC_MESSAGES/R-stats.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/tr/LC_MESSAGES/R-stats.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/tr/LC_MESSAGES/R-stats4.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/tr/LC_MESSAGES/R-stats4.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/tr/LC_MESSAGES/R-tools.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/tr/LC_MESSAGES/R-tools.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/tr/LC_MESSAGES/R-utils.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/tr/LC_MESSAGES/R-utils.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/tr/LC_MESSAGES/graphics.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/tr/LC_MESSAGES/graphics.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/zh_CN/LC_MESSAGES/RGui.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/zh_CN/LC_MESSAGES/RGui.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/zh_CN/LC_MESSAGES/grid.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/zh_CN/LC_MESSAGES/grid.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/zh_CN/LC_MESSAGES/stats.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/zh_CN/LC_MESSAGES/stats.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/zh_CN/LC_MESSAGES/tcltk.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/zh_CN/LC_MESSAGES/tcltk.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/zh_CN/LC_MESSAGES/tools.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/zh_CN/LC_MESSAGES/tools.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/zh_TW/LC_MESSAGES/RGui.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/zh_TW/LC_MESSAGES/RGui.mo -------------------------------------------------------------------------------- /R-src/tests/Embedding/Rtest.c: -------------------------------------------------------------------------------- 1 | #include "embeddedRCall.h" 2 | 3 | int 4 | main(int argc, char *argv[]) 5 | { 6 | eval_R_command("print", argc, argv); 7 | return(0); 8 | } 9 | -------------------------------------------------------------------------------- /RRO-src/OSX/Mac-GUI/Tools/sush.c: -------------------------------------------------------------------------------- 1 | #include 2 | #include 3 | 4 | int main(int argc, char **argv) { 5 | setuid(0); 6 | return execv("/bin/sh",argv); 7 | } 8 | -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/da/LC_MESSAGES/R-compiler.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/da/LC_MESSAGES/R-compiler.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/da/LC_MESSAGES/R-graphics.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/da/LC_MESSAGES/R-graphics.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/da/LC_MESSAGES/R-methods.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/da/LC_MESSAGES/R-methods.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/da/LC_MESSAGES/R-parallel.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/da/LC_MESSAGES/R-parallel.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/da/LC_MESSAGES/R-splines.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/da/LC_MESSAGES/R-splines.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/da/LC_MESSAGES/grDevices.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/da/LC_MESSAGES/grDevices.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/de/LC_MESSAGES/R-compiler.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/de/LC_MESSAGES/R-compiler.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/de/LC_MESSAGES/R-graphics.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/de/LC_MESSAGES/R-graphics.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/de/LC_MESSAGES/R-methods.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/de/LC_MESSAGES/R-methods.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/de/LC_MESSAGES/R-parallel.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/de/LC_MESSAGES/R-parallel.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/de/LC_MESSAGES/R-splines.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/de/LC_MESSAGES/R-splines.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/de/LC_MESSAGES/grDevices.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/de/LC_MESSAGES/grDevices.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/en@quot/LC_MESSAGES/grid.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/en@quot/LC_MESSAGES/grid.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/en@quot/LC_MESSAGES/stats.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/en@quot/LC_MESSAGES/stats.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/en@quot/LC_MESSAGES/tcltk.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/en@quot/LC_MESSAGES/tcltk.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/en@quot/LC_MESSAGES/tools.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/en@quot/LC_MESSAGES/tools.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/en@quot/LC_MESSAGES/utils.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/en@quot/LC_MESSAGES/utils.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/fr/LC_MESSAGES/R-compiler.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/fr/LC_MESSAGES/R-compiler.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/fr/LC_MESSAGES/R-graphics.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/fr/LC_MESSAGES/R-graphics.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/fr/LC_MESSAGES/R-methods.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/fr/LC_MESSAGES/R-methods.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/fr/LC_MESSAGES/R-parallel.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/fr/LC_MESSAGES/R-parallel.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/fr/LC_MESSAGES/R-splines.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/fr/LC_MESSAGES/R-splines.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/fr/LC_MESSAGES/grDevices.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/fr/LC_MESSAGES/grDevices.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/it/LC_MESSAGES/R-graphics.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/it/LC_MESSAGES/R-graphics.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/it/LC_MESSAGES/grDevices.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/it/LC_MESSAGES/grDevices.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/ja/LC_MESSAGES/R-compiler.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/ja/LC_MESSAGES/R-compiler.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/ja/LC_MESSAGES/R-graphics.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/ja/LC_MESSAGES/R-graphics.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/ja/LC_MESSAGES/R-methods.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/ja/LC_MESSAGES/R-methods.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/ja/LC_MESSAGES/R-splines.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/ja/LC_MESSAGES/R-splines.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/ja/LC_MESSAGES/grDevices.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/ja/LC_MESSAGES/grDevices.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/ko/LC_MESSAGES/R-compiler.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/ko/LC_MESSAGES/R-compiler.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/ko/LC_MESSAGES/R-graphics.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/ko/LC_MESSAGES/R-graphics.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/ko/LC_MESSAGES/R-methods.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/ko/LC_MESSAGES/R-methods.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/ko/LC_MESSAGES/R-parallel.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/ko/LC_MESSAGES/R-parallel.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/ko/LC_MESSAGES/R-splines.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/ko/LC_MESSAGES/R-splines.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/ko/LC_MESSAGES/grDevices.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/ko/LC_MESSAGES/grDevices.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/pl/LC_MESSAGES/R-compiler.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/pl/LC_MESSAGES/R-compiler.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/pl/LC_MESSAGES/R-graphics.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/pl/LC_MESSAGES/R-graphics.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/pl/LC_MESSAGES/R-methods.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/pl/LC_MESSAGES/R-methods.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/pl/LC_MESSAGES/R-parallel.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/pl/LC_MESSAGES/R-parallel.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/pl/LC_MESSAGES/R-splines.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/pl/LC_MESSAGES/R-splines.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/pl/LC_MESSAGES/grDevices.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/pl/LC_MESSAGES/grDevices.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/pt_BR/LC_MESSAGES/R-base.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/pt_BR/LC_MESSAGES/R-base.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/pt_BR/LC_MESSAGES/R-grid.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/pt_BR/LC_MESSAGES/R-grid.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/pt_BR/LC_MESSAGES/R-stats.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/pt_BR/LC_MESSAGES/R-stats.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/pt_BR/LC_MESSAGES/R-tcltk.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/pt_BR/LC_MESSAGES/R-tcltk.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/pt_BR/LC_MESSAGES/R-tools.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/pt_BR/LC_MESSAGES/R-tools.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/pt_BR/LC_MESSAGES/R-utils.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/pt_BR/LC_MESSAGES/R-utils.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/pt_BR/LC_MESSAGES/methods.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/pt_BR/LC_MESSAGES/methods.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/pt_BR/LC_MESSAGES/splines.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/pt_BR/LC_MESSAGES/splines.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/ru/LC_MESSAGES/R-compiler.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/ru/LC_MESSAGES/R-compiler.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/ru/LC_MESSAGES/R-graphics.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/ru/LC_MESSAGES/R-graphics.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/ru/LC_MESSAGES/R-methods.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/ru/LC_MESSAGES/R-methods.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/ru/LC_MESSAGES/R-parallel.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/ru/LC_MESSAGES/R-parallel.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/ru/LC_MESSAGES/R-splines.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/ru/LC_MESSAGES/R-splines.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/ru/LC_MESSAGES/grDevices.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/ru/LC_MESSAGES/grDevices.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/zh_CN/LC_MESSAGES/R-base.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/zh_CN/LC_MESSAGES/R-base.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/zh_CN/LC_MESSAGES/R-grid.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/zh_CN/LC_MESSAGES/R-grid.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/zh_CN/LC_MESSAGES/R-stats.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/zh_CN/LC_MESSAGES/R-stats.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/zh_CN/LC_MESSAGES/R-tcltk.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/zh_CN/LC_MESSAGES/R-tcltk.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/zh_CN/LC_MESSAGES/R-tools.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/zh_CN/LC_MESSAGES/R-tools.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/zh_CN/LC_MESSAGES/R-utils.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/zh_CN/LC_MESSAGES/R-utils.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/zh_CN/LC_MESSAGES/methods.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/zh_CN/LC_MESSAGES/methods.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/zh_CN/LC_MESSAGES/splines.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/zh_CN/LC_MESSAGES/splines.mo -------------------------------------------------------------------------------- /R-src/src/extra/graphapp/R.def: -------------------------------------------------------------------------------- 1 | EXPORTS 2 | R_ShowMessage 3 | Rf_mbrtowc 4 | Rf_strchr 5 | Rf_utf8towcs 6 | localeCP 7 | libintl_dgettext 8 | libintl_gettext 9 | Rprintf 10 | -------------------------------------------------------------------------------- /R-src/src/extra/xz/common/tuklib_config.h: -------------------------------------------------------------------------------- 1 | #ifdef HAVE_CONFIG_H 2 | # include "sysdefs.h" 3 | #else 4 | # include 5 | # include 6 | # include 7 | #endif 8 | -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/da/LC_MESSAGES/R-grDevices.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/da/LC_MESSAGES/R-grDevices.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/de/LC_MESSAGES/R-grDevices.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/de/LC_MESSAGES/R-grDevices.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/en@quot/LC_MESSAGES/R-base.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/en@quot/LC_MESSAGES/R-base.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/en@quot/LC_MESSAGES/R-grid.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/en@quot/LC_MESSAGES/R-grid.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/en@quot/LC_MESSAGES/R-stats.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/en@quot/LC_MESSAGES/R-stats.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/en@quot/LC_MESSAGES/R-stats4.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/en@quot/LC_MESSAGES/R-stats4.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/en@quot/LC_MESSAGES/R-tcltk.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/en@quot/LC_MESSAGES/R-tcltk.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/en@quot/LC_MESSAGES/R-tools.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/en@quot/LC_MESSAGES/R-tools.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/en@quot/LC_MESSAGES/R-utils.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/en@quot/LC_MESSAGES/R-utils.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/en@quot/LC_MESSAGES/graphics.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/en@quot/LC_MESSAGES/graphics.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/en@quot/LC_MESSAGES/methods.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/en@quot/LC_MESSAGES/methods.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/en@quot/LC_MESSAGES/parallel.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/en@quot/LC_MESSAGES/parallel.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/en@quot/LC_MESSAGES/splines.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/en@quot/LC_MESSAGES/splines.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/en_GB/LC_MESSAGES/grDevices.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/en_GB/LC_MESSAGES/grDevices.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/fr/LC_MESSAGES/R-grDevices.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/fr/LC_MESSAGES/R-grDevices.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/it/LC_MESSAGES/R-grDevices.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/it/LC_MESSAGES/R-grDevices.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/ja/LC_MESSAGES/R-grDevices.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/ja/LC_MESSAGES/R-grDevices.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/ko/LC_MESSAGES/R-grDevices.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/ko/LC_MESSAGES/R-grDevices.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/pl/LC_MESSAGES/R-grDevices.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/pl/LC_MESSAGES/R-grDevices.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/pt_BR/LC_MESSAGES/R-compiler.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/pt_BR/LC_MESSAGES/R-compiler.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/pt_BR/LC_MESSAGES/R-graphics.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/pt_BR/LC_MESSAGES/R-graphics.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/pt_BR/LC_MESSAGES/R-methods.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/pt_BR/LC_MESSAGES/R-methods.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/pt_BR/LC_MESSAGES/R-splines.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/pt_BR/LC_MESSAGES/R-splines.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/pt_BR/LC_MESSAGES/R-stats4.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/pt_BR/LC_MESSAGES/R-stats4.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/pt_BR/LC_MESSAGES/grDevices.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/pt_BR/LC_MESSAGES/grDevices.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/pt_BR/LC_MESSAGES/graphics.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/pt_BR/LC_MESSAGES/graphics.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/ru/LC_MESSAGES/R-grDevices.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/ru/LC_MESSAGES/R-grDevices.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/zh_CN/LC_MESSAGES/R-compiler.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/zh_CN/LC_MESSAGES/R-compiler.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/zh_CN/LC_MESSAGES/R-graphics.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/zh_CN/LC_MESSAGES/R-graphics.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/zh_CN/LC_MESSAGES/R-methods.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/zh_CN/LC_MESSAGES/R-methods.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/zh_CN/LC_MESSAGES/R-parallel.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/zh_CN/LC_MESSAGES/R-parallel.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/zh_CN/LC_MESSAGES/R-splines.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/zh_CN/LC_MESSAGES/R-splines.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/zh_CN/LC_MESSAGES/R-stats4.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/zh_CN/LC_MESSAGES/R-stats4.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/zh_CN/LC_MESSAGES/grDevices.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/zh_CN/LC_MESSAGES/grDevices.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/zh_CN/LC_MESSAGES/graphics.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/zh_CN/LC_MESSAGES/graphics.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/zh_CN/LC_MESSAGES/parallel.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/zh_CN/LC_MESSAGES/parallel.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/zh_TW/LC_MESSAGES/graphics.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/zh_TW/LC_MESSAGES/graphics.mo -------------------------------------------------------------------------------- /R-src/tests/testit-Ex.R.save: -------------------------------------------------------------------------------- 1 | ### Name: testit 2 | ### Title: An Rd Regression Test 3 | ### Aliases: { 4 | 5 | ### ** Examples 6 | 7 | \x 8 | %{} 9 | foo(x, y) 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/en@quot/LC_MESSAGES/R-compiler.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/en@quot/LC_MESSAGES/R-compiler.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/en@quot/LC_MESSAGES/R-graphics.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/en@quot/LC_MESSAGES/R-graphics.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/en@quot/LC_MESSAGES/R-methods.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/en@quot/LC_MESSAGES/R-methods.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/en@quot/LC_MESSAGES/R-parallel.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/en@quot/LC_MESSAGES/R-parallel.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/en@quot/LC_MESSAGES/R-splines.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/en@quot/LC_MESSAGES/R-splines.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/en@quot/LC_MESSAGES/grDevices.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/en@quot/LC_MESSAGES/grDevices.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/en_GB/LC_MESSAGES/R-grDevices.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/en_GB/LC_MESSAGES/R-grDevices.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/pt_BR/LC_MESSAGES/R-grDevices.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/pt_BR/LC_MESSAGES/R-grDevices.mo -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/zh_CN/LC_MESSAGES/R-grDevices.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/zh_CN/LC_MESSAGES/R-grDevices.mo -------------------------------------------------------------------------------- /R-src/src/scripts/REMOVE: -------------------------------------------------------------------------------- 1 | # ${R_HOME}/bin/REMOVE for removing add-on packages 2 | 3 | R_DEFAULT_PACKAGES=NULL "${R_HOME}/bin/R" -f "${R_SHARE_DIR}/R/REMOVE.R" --no-restore --slave --args $@ 4 | 5 | -------------------------------------------------------------------------------- /R-src/src/scripts/SHLIB: -------------------------------------------------------------------------------- 1 | # 2 | # ${R_HOME}/bin/SHLIB 3 | 4 | echo 'tools:::.SHLIB()' | R_DEFAULT_PACKAGES=NULL "${R_HOME}/bin/R" --no-restore --slave --no-site-file --no-init-file --args $@ 5 | 6 | -------------------------------------------------------------------------------- /RRO-src/test/standardRTests.R: -------------------------------------------------------------------------------- 1 | Sys.setenv(LC_COLLATE = "C", LC_TIME = "C", LANGUAGE = "en") 2 | library("tools") 3 | testInstalledBasic("both") 4 | testInstalledPackages(scope = "recommended") 5 | -------------------------------------------------------------------------------- /R-src/src/library/grDevices/src/qdPDF.h: -------------------------------------------------------------------------------- 1 | #include 2 | #include 3 | 4 | QuartzDesc_t QuartzPDF_DeviceCreate(void *dd, QuartzFunctions_t *fn, QuartzParameters_t *par); 5 | 6 | -------------------------------------------------------------------------------- /R-src/src/library/translations/inst/en@quot/LC_MESSAGES/R-grDevices.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/R-src/src/library/translations/inst/en@quot/LC_MESSAGES/R-grDevices.mo -------------------------------------------------------------------------------- /RRO-src/buildFiles/RevoUtils/packages.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /RRO-src/old/SLES10/install.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | echo "Installing RRO-3.2.1" 3 | zypper install -y make gcc #2>/dev/null 1>/dev/null 4 | rpm -ivh RRO-3.*-SLES10*.x86_64.rpm #2>/dev/null 1>/dev/null 5 | 6 | -------------------------------------------------------------------------------- /R-src/src/library/datasets/data/Formaldehyde.R: -------------------------------------------------------------------------------- 1 | Formaldehyde <- data.frame( 2 | carb = c(0.1, 0.3, 0.5, 0.6, 0.7, 0.9), 3 | optden = c(0.086, 0.269, 0.446, 0.538, 0.626, 0.782), row.names = paste(1:6)) 4 | -------------------------------------------------------------------------------- /R-src/src/library/stats/tests/ppr.R: -------------------------------------------------------------------------------- 1 | ## example from PR#13571: should fail, not crash. 2 | 3 | require("stats") 4 | bad <- as.matrix(read.csv("ppr_test.csv")) 5 | try(ppr(bad[,-3], bad[, 3], nterms=1)) 6 | 7 | -------------------------------------------------------------------------------- /RRO-src/OSX/Mac-GUI/Revolution R Open_Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'R' target in the 'R' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #endif 8 | -------------------------------------------------------------------------------- /RRO-src/old/SLES11/install.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | echo "Installing RRO-3.2.1" 3 | zypper install -y make gcc 2>/dev/null 1>/dev/null 4 | zypper install -y RRO-3.*-SLES11*.x86_64.rpm 2>/dev/null 1>/dev/null 5 | 6 | -------------------------------------------------------------------------------- /RRO-src/old/openSUSE/install.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | echo "Installing RRO-3.2.1" 3 | zypper install -y make gcc 2>/dev/null 1>/dev/null 4 | zypper install -y RRO-3.*-openSUSE-13.1.x86_64.rpm 2>/dev/null 1>/dev/null 5 | 6 | -------------------------------------------------------------------------------- /RRO-src/old/CentOS/install.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | echo "Installing RRO-3.2.1" 3 | yum -y install make gcc gcc-gfortran 2>/dev/null 1>/dev/null 4 | yum -y --nogpgcheck localinstall RRO-3.*.x86_64.rpm 2>/dev/null 1>/dev/null 5 | 6 | -------------------------------------------------------------------------------- /R-src/src/library/datasets/data/uspop.R: -------------------------------------------------------------------------------- 1 | "uspop" <- 2 | structure(c(3.93, 5.31, 7.24, 9.64, 12.9, 17.1, 23.2, 31.4, 39.8, 50.2, 3 | 62.9, 76, 92, 105.7, 122.8, 131.7, 151.3, 179.3, 203.2), 4 | .Tsp = c(1790, 1970, 0.1), class = "ts") 5 | -------------------------------------------------------------------------------- /R-src/src/library/datasets/data/women.R: -------------------------------------------------------------------------------- 1 | "women" <- 2 | data.frame(height = c(58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 3 | 70, 71, 72), weight = c(115, 117, 120, 123, 126, 129, 132, 135, 139, 142, 4 | 146, 150, 154, 159, 164)) 5 | -------------------------------------------------------------------------------- /R-src/src/library/datasets/data/sleep.R: -------------------------------------------------------------------------------- 1 | sleep <- data.frame(extra = c(0.7, -1.6, -0.2, -1.2, -0.1, 3.4, 3.7, 2 | 0.8, 0, 2, 1.9, 0.8, 1.1, 0.1, -0.1, 4.4, 5.5, 1.6, 4.6, 3.4), 3 | group = gl(2,10), 4 | ID = factor(rep.int(1:10,2))) 5 | 6 | -------------------------------------------------------------------------------- /R-src/src/nmath/standalone/libRmath.pc.in: -------------------------------------------------------------------------------- 1 | includedir=@includedir 2 | libdir=@libdir 3 | 4 | Name: libRmath 5 | Description: The Rmath function library 6 | Version: @VERSION 7 | Libs: -L${libdir} -lRmath @libm 8 | Cflags: -I${includedir} 9 | -------------------------------------------------------------------------------- /R-src/src/scripts/Makefile.win: -------------------------------------------------------------------------------- 1 | #-*- Makefile -*- 2 | R_HOME = ../.. 3 | 4 | ## COMPILE LINK javareconf rtags are Unix-only 5 | 6 | all: \ 7 | $(R_HOME)/bin/config.sh 8 | 9 | $(R_HOME)/bin/config.sh: config 10 | @cp $< $@ 11 | -------------------------------------------------------------------------------- /R-src/src/library/datasets/data/BOD.R: -------------------------------------------------------------------------------- 1 | ### Biochemical Oxygen Demand data from Marske 2 | BOD <- 3 | data.frame(Time = c(1, 2, 3, 4, 5, 7), 4 | demand = c(8.3, 10.3, 19, 16, 15.6, 19.8)) 5 | attr(BOD, "reference") <- "A1.4, p. 270" 6 | -------------------------------------------------------------------------------- /R-src/ChangeLog: -------------------------------------------------------------------------------- 1 | * News are in 2 | - the source doc/NEWS.Rd 3 | - installed R's doc/NEWS and doc/NEWS.pdf 4 | 5 | * Details about single subversion (svn) commits are available, e.g., by 6 | 7 | svn log https://svn.r-project.org/R/trunk 8 | 9 | -------------------------------------------------------------------------------- /R-src/etc/javaconf.in: -------------------------------------------------------------------------------- 1 | ## Versions from settings when configure was run 2 | : ${JAVA_HOME=@custom_JAVA_HOME@} 3 | : ${JAVA_CPPFLAGS=@custom_JAVA_CPPFLAGS@} 4 | : ${JAVA_LD_LIBRARY_PATH=@custom_JAVA_LD_LIBRARY_PATH@} 5 | : ${JAVA_LIBS=@custom_JAVA_LIBS@} 6 | 7 | -------------------------------------------------------------------------------- /R-src/src/library/datasets/data/airmiles.R: -------------------------------------------------------------------------------- 1 | "airmiles" <- 2 | structure(c(412, 480, 683, 1052, 1385, 1418, 1634, 2178, 3362, 5948, 6109, 3 | 5981, 6753, 8003, 10566, 12528, 14760, 16769, 19819, 22362, 25340, 25343, 4 | 29269, 30514), .Tsp = c(1937, 1960, 1), class = "ts") 5 | -------------------------------------------------------------------------------- /R-src/tests/reg-plot-latin1.R: -------------------------------------------------------------------------------- 1 | pdf(file = "reg-plot-latin1.pdf", encoding = "ISOLatin1", 2 | width = 7, height = 7, paper = "a4r", compress = FALSE) 3 | library(graphics) # to be sure 4 | example(text) # has examples that need to he plotted in latin-1 5 | q("no") 6 | -------------------------------------------------------------------------------- /R-src/src/gnuwin32/windlgs/DESCRIPTION: -------------------------------------------------------------------------------- 1 | Package: windlgs 2 | Version: 1.1.0 3 | Title: Examples of Windows Dialogs 4 | Author: R Core Team 5 | Maintainer: R Core Team 6 | Description: Examples of Windows Dialogs 7 | Imports: stats 8 | License: GPL (>=2) 9 | -------------------------------------------------------------------------------- /R-src/src/extra/graphapp/gif.c: -------------------------------------------------------------------------------- 1 | /* stubs as gif support has been removed */ 2 | 3 | #include 4 | 5 | image load_gif(const char *filename) 6 | { 7 | return (image) NULL; 8 | } 9 | 10 | void save_gif(image img, const char *filename) 11 | { 12 | } 13 | 14 | -------------------------------------------------------------------------------- /R-src/tests/Pkgs/pkgA/R/pkgA.R: -------------------------------------------------------------------------------- 1 | setClass("classA", contains = "matrix") 2 | 3 | ## just so we can export it -- 4 | ## *and* ensure it is "attached to graphics::plot generic" : 5 | setMethod("plot", "classA", function(x, y, ...) NULL) 6 | 7 | nil <- NULL # see if we can use '::' on it 8 | -------------------------------------------------------------------------------- /R-src/src/library/parallel/tests/multicore3.RR: -------------------------------------------------------------------------------- 1 | library(parallel) 2 | 3 | simplify2array(mclapply(rep(4, 5), rnorm)) 4 | # use the same random numbers for all values 5 | set.seed(1) 6 | simplify2array(mclapply(rep(4, 5), rnorm, mc.preschedule = FALSE, 7 | mc.set.seed = FALSE)) 8 | -------------------------------------------------------------------------------- /R-src/src/library/base/demo/00Index: -------------------------------------------------------------------------------- 1 | is.things Explore some properties of R objects and is.FOO() 2 | functions. Not for newbies! 3 | recursion Using recursion for adaptive integration 4 | scoping An illustration of lexical scoping. 5 | error.catching More examples on catching and handling errors 6 | -------------------------------------------------------------------------------- /R-src/src/library/datasets/DESCRIPTION.in: -------------------------------------------------------------------------------- 1 | Package: datasets 2 | Version: @VERSION@ 3 | Priority: base 4 | Title: The R Datasets Package 5 | Author: R Core Team and contributors worldwide 6 | Maintainer: R Core Team 7 | Description: Base R datasets. 8 | License: Part of R @VERSION@ 9 | -------------------------------------------------------------------------------- /R-src/src/library/datasets/data/lh.R: -------------------------------------------------------------------------------- 1 | "lh" <- 2 | stats::ts(c(2.4, 2.4, 2.4, 2.2, 2.1, 1.5, 2.3, 2.3, 2.5, 2, 1.9, 3 | 1.7, 2.2, 1.8, 3.2, 3.2, 2.7, 2.2, 2.2, 1.9, 1.9, 1.8, 2.7, 3, 4 | 2.3, 2, 2, 2.9, 2.9, 2.7, 2.7, 2.3, 2.6, 2.4, 1.8, 1.7, 1.5, 5 | 1.4, 2.1, 3.3, 3.5, 3.5, 3.1, 2.6, 2.1, 3.4, 3, 2.9)) 6 | -------------------------------------------------------------------------------- /R-src/src/unix/libR.pc.in: -------------------------------------------------------------------------------- 1 | rhome=@rhome 2 | rlibdir=${rhome}/lib@rarch 3 | rincludedir=@rincludedir 4 | 5 | Name: libR 6 | Description: R as a library 7 | Version: @VERSION 8 | Libs: @others -L${rlibdir} -lR 9 | Cflags: -I${rincludedir} -I${rincludedir}@rarch 10 | Libs.private:@libsprivate 11 | -------------------------------------------------------------------------------- /RRO-src/buildFiles/packages-windows.json: -------------------------------------------------------------------------------- 1 | { 2 | "packages": [ 3 | { "name": "checkpoint", "source": "url", "location": "http://packages.revolutionanalytics.com/RRO/checkpoint_0.3.16.tar.gz", "destFileName": "checkpoint_0.3.16.tar.gz" } 4 | ], 5 | 6 | "binary_packages": [] 7 | } 8 | -------------------------------------------------------------------------------- /R-src/tests/Embedding/embeddedRCall.h: -------------------------------------------------------------------------------- 1 | #ifndef EMBEDDED_R_CALL_H 2 | #define EMBEDDED_R_CALL_H 3 | 4 | #include 5 | #include 6 | 7 | int eval_R_command(const char *funcName, int argc, char *argv[]); 8 | void init_R(int argc, char **argv); 9 | void end_R(); 10 | 11 | #endif 12 | -------------------------------------------------------------------------------- /RRO-src/OSX/Mac-GUI/Microsoft R Open.xcodeproj/project.xcworkspace/xcuserdata/nathan.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionAnalytics/RRO/HEAD/RRO-src/OSX/Mac-GUI/Microsoft R Open.xcodeproj/project.xcworkspace/xcuserdata/nathan.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /RRO-src/buildFiles/packages-linux.json: -------------------------------------------------------------------------------- 1 | { 2 | "packages": [ 3 | { "name": "checkpoint", "source": "url", "location": "http://packages.revolutionanalytics.com/RRO/checkpoint_0.3.16.tar.gz", "destFileName": "checkpoint_0.3.16.tar.gz" } 4 | ], 5 | 6 | "binary_packages": [ 7 | ] 8 | } 9 | -------------------------------------------------------------------------------- /R-src/src/library/compiler/DESCRIPTION.in: -------------------------------------------------------------------------------- 1 | Package: compiler 2 | Version: @VERSION@ 3 | Priority: base 4 | Title: The R Compiler Package 5 | Author: Luke Tierney 6 | Maintainer: R Core Team 7 | Description: Byte code compiler for R. 8 | License: Part of R @VERSION@ 9 | -------------------------------------------------------------------------------- /R-src/src/library/datasets/data/pressure.R: -------------------------------------------------------------------------------- 1 | "pressure" <- 2 | data.frame(temperature = c(0, 20, 40, 60, 80, 100, 120, 140, 160, 180, 3 | 200, 220, 240, 260, 280, 300, 320, 340, 360), pressure = c(0.0002, 0.0012, 4 | 0.006, 0.03, 0.09, 0.27, 0.75, 1.85, 4.2, 8.8, 17.3, 32.1, 57, 96, 157, 5 | 247, 376, 558, 806)) 6 | -------------------------------------------------------------------------------- /R-src/src/gnuwin32/installer/INSTALL: -------------------------------------------------------------------------------- 1 | Making the installer 2 | =================== 3 | 4 | Details on building the installer are now given in the `R Installation 5 | and Administration Manual' in the doc/manual directory. An HTML 6 | version is at doc/html/R-admin.html, unless you obtained R using 7 | Subversion. 8 | -------------------------------------------------------------------------------- /R-src/src/library/translations/DESCRIPTION.in: -------------------------------------------------------------------------------- 1 | Package: translations 2 | Version: @VERSION@ 3 | Title: The R Translations Package 4 | Author: R Core Team and contributors worldwide 5 | Maintainer: R Core Team 6 | Description: Compiled translations of messages. 7 | License: Part of R @VERSION@ 8 | -------------------------------------------------------------------------------- /R-src/src/library/compiler/tests/jit.R: -------------------------------------------------------------------------------- 1 | library(compiler) 2 | 3 | oldJIT <- enableJIT(3) 4 | 5 | ## need a test of level 1 to make sure functions are compiled 6 | 7 | ## need more tests here 8 | 9 | repeat { break } 10 | 11 | while(TRUE) break 12 | 13 | for (i in 1:10) i 14 | 15 | enableJIT(oldJIT) 16 | 17 | -------------------------------------------------------------------------------- /R-src/src/library/tcltk/demo/00Index: -------------------------------------------------------------------------------- 1 | tkcanvas Creates a canvas widget showing a 2-D plot with 2 | data points that can be dragged with the mouse. 3 | tkdensity Interactive density plots. 4 | tkfaq Show long file, the R FAQ, using scrollbared window. 5 | tkttest t-test example of GUI interface to a function call. 6 | -------------------------------------------------------------------------------- /RRO-src/OSX/Mac-GUI/Microsoft R Open.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /RRO-src/test/modelTest.R: -------------------------------------------------------------------------------- 1 | #seed value for random vectors 2 | x<-10 3 | 4 | #create random vectors 5 | y<-rnorm(x) 6 | z<-rnorm(x) 7 | 8 | #create a dataframe 9 | df<-data.frame(z,y) 10 | 11 | #run a regression 12 | model<-lm(df$z~df$y) 13 | 14 | #display output 15 | print(summary(model)) 16 | plot(model) 17 | 18 | -------------------------------------------------------------------------------- /R-src/src/gnuwin32/fixed/rwver.R: -------------------------------------------------------------------------------- 1 | # keep in step with tools/GETDISTNAME 2 | 3 | if(R.version$status == "Under development (unstable)") { 4 | res <- "R-devel" 5 | } else { 6 | res <- paste("R-", R.version$major, ".", R.version$minor, 7 | tolower(R.version$status) , sep="") 8 | } 9 | cat(res) 10 | -------------------------------------------------------------------------------- /R-src/src/library/base/DESCRIPTION.in: -------------------------------------------------------------------------------- 1 | Package: base 2 | Version: @VERSION@ 3 | Priority: base 4 | Title: The R Base Package 5 | Author: R Core Team and contributors worldwide 6 | Maintainer: R Core Team 7 | Description: Base R functions. 8 | License: Part of R @VERSION@ 9 | Suggests: methods 10 | -------------------------------------------------------------------------------- /R-src/src/library/datasets/data/euro.R: -------------------------------------------------------------------------------- 1 | euro <- c(ATS = 13.7603, BEF = 40.3399, DEM = 1.95583, ESP = 166.386, 2 | FIM = 5.94573, FRF = 6.55957, IEP = .787564, ITL = 1936.27, 3 | LUF = 40.3399, NLG = 2.20371, PTE = 200.482) 4 | 5 | euro.cross <- outer(1/euro, euro) 6 | dimnames(euro.cross) <- list(names(euro),names(euro)) 7 | -------------------------------------------------------------------------------- /R-src/src/library/grid/vignettes/grid.bib: -------------------------------------------------------------------------------- 1 | @Article{murrell:1999, 2 | author = {Paul R. Murrell}, 3 | title = {Layouts: A mechanism for arranging plots on a page}, 4 | journal = {Journal of Computational and Graphical Statistics}, 5 | year = 1999, 6 | volume = 8, 7 | pages = {121--134} 8 | } 9 | -------------------------------------------------------------------------------- /R-src/src/scripts/Rdiff: -------------------------------------------------------------------------------- 1 | ## Rdiff -- diff 'without R version' 2 | 3 | args= 4 | while test -n "${1}"; do 5 | ## quote each argument here, unquote in R code. 6 | args="${args}nextArg${1}" 7 | shift 8 | done 9 | 10 | R_DEFAULT_PACKAGES=NULL "${R_HOME}/bin/R" -e 'tools:::.Rdiff()' --vanilla --slave --args ${args} 11 | -------------------------------------------------------------------------------- /R-src/tests/demos2.R: -------------------------------------------------------------------------------- 1 | #### Run all demos for which we do not wish to diff the output 2 | .ptime <- proc.time() 3 | set.seed(123) 4 | 5 | demos <- c("Hershey", "Japanese", "lm.glm", "nlm", "plotmath") 6 | 7 | for(nam in demos) demo(nam, character.only = TRUE) 8 | 9 | cat("Time elapsed: ", proc.time() - .ptime, "\n") 10 | -------------------------------------------------------------------------------- /R-src/src/library/utils/DESCRIPTION.in: -------------------------------------------------------------------------------- 1 | Package: utils 2 | Version: @VERSION@ 3 | Priority: base 4 | Title: The R Utils Package 5 | Author: R Core Team and contributors worldwide 6 | Maintainer: R Core Team 7 | Description: R utility functions. 8 | License: Part of R @VERSION@ 9 | Suggests: methods 10 | -------------------------------------------------------------------------------- /R-src/tools/copy-if-change: -------------------------------------------------------------------------------- 1 | # Like cp $1 $2, but if the files are the same, do NOTHING. 2 | # Status is 0 if $2 is changed, 1 otherwise. 3 | 4 | if test -r "$2"; then 5 | if cmp "$1" "$2" > /dev/null; then 6 | echo "$2" is unchanged 7 | else 8 | cp -f "$1" "$2" 9 | fi 10 | else 11 | cp "$1" "$2" 12 | fi 13 | -------------------------------------------------------------------------------- /R-src/src/gnuwin32/cran/ReadMe.in: -------------------------------------------------------------------------------- 1 | R-@FULLVERSION@ for Windows 2 | =================== 3 | This directory contains a binary distribution of R-@RVER@ to run on 4 | Windows XP or later on i386 and x64 CPUs (and not Itanium, ia64). 5 | 6 | See 'README.@RWVER@' for further instructions and 7 | 'CHANGES' for the new features of this version. 8 | -------------------------------------------------------------------------------- /R-src/src/library/tcltk/DESCRIPTION.in: -------------------------------------------------------------------------------- 1 | Package: tcltk 2 | Version: @VERSION@ 3 | Priority: base 4 | Title: Tcl/Tk Interface 5 | Author: R Core Team 6 | Maintainer: R Core Team 7 | Description: Interface and language bindings to Tcl/Tk GUI elements. 8 | License: Part of R @VERSION@ 9 | Imports: utils 10 | 11 | -------------------------------------------------------------------------------- /R-src/tests/datasets.R: -------------------------------------------------------------------------------- 1 | #### Simple integrity tests of the system datasets 2 | 3 | options(useFancyQuotes=FALSE) 4 | env <- as.environment("package:datasets") 5 | d <- ls(env) # don't want .names 6 | for(f in d) { 7 | cat("\n** structure of dataset ", f, "\n", sep="") 8 | str(get(f, envir=env, inherits=FALSE)) 9 | } 10 | -------------------------------------------------------------------------------- /R-src/src/library/datasets/data/VADeaths.R: -------------------------------------------------------------------------------- 1 | "VADeaths" <- 2 | structure(c(11.7, 18.1, 26.9, 41, 66, 8.7, 11.7, 20.3, 30.9, 54.3, 15.4, 3 | 24.3, 37, 54.6, 71.1, 8.4, 13.6, 19.3, 35.1, 50), .Dim = c(5, 4), 4 | .Dimnames = list(c("50-54", "55-59", "60-64", "65-69", "70-74"), 5 | c("Rural Male", "Rural Female", "Urban Male", "Urban Female"))) 6 | -------------------------------------------------------------------------------- /R-src/src/library/stats/demo/00Index: -------------------------------------------------------------------------------- 1 | glm.vr Some glm() examples from V&R with several predictors 2 | lm.glm Some linear and generalized linear modelling 3 | examples from `An Introduction to Statistical 4 | Modelling' by Annette Dobson 5 | nlm Nonlinear least-squares using nlm() 6 | smooth `Visualize' steps in Tukey's smoothers 7 | -------------------------------------------------------------------------------- /R-src/src/modules/Makefile.win: -------------------------------------------------------------------------------- 1 | #-*- Makefile -*- 2 | include ../gnuwin32/MkRules 3 | 4 | MODULES = internet lapack 5 | 6 | ifndef DEBUG 7 | DLLFLAGS = -s 8 | endif 9 | 10 | all clean: 11 | @for d in $(MODULES); do \ 12 | (cd $${d} && $(MAKE) R_HOME=$(RHOME) DLLFLAGS=$(DLLFLAGS) -f Makefile.win $@) || exit 1; \ 13 | done 14 | -------------------------------------------------------------------------------- /R-src/src/extra/xdr/Makefile.win: -------------------------------------------------------------------------------- 1 | #-*- Makefile -*- 2 | include ../../gnuwin32/MkRules 3 | 4 | DEFS = -DWIN32 -DHAVE_CONFIG_H 5 | 6 | CPPFLAGS = -I. -I../../include $(DEFS) 7 | 8 | all: libxdr.a 9 | 10 | libxdr.a: xdr.o xdr_float.o xdr_stdio.o xdr_mem.o 11 | 12 | clean: 13 | $(RM) *.o *~ 14 | distclean: clean 15 | $(RM) libxdr.a 16 | -------------------------------------------------------------------------------- /R-src/src/library/stats/tests/glm.R: -------------------------------------------------------------------------------- 1 | ## Example in which the fit for the null deviance fails to converge: 2 | # https://stat.ethz.ch/pipermail/r-help/2012-May/313161.html 3 | Y <- c(rep(0,35),1,2,0,6,8,16,43) 4 | beta <- 42:1 5 | cst <- lchoose(42, beta) 6 | tau <- (beta^2)/2 7 | fit <- glm(formula = Y ~ offset(cst) + beta + tau, family = poisson) 8 | -------------------------------------------------------------------------------- /R-src/src/library/graphics/DESCRIPTION.in: -------------------------------------------------------------------------------- 1 | Package: graphics 2 | Version: @VERSION@ 3 | Priority: base 4 | Title: The R Graphics Package 5 | Author: R Core Team and contributors worldwide 6 | Maintainer: R Core Team 7 | Description: R functions for base graphics. 8 | Imports: grDevices 9 | License: Part of R @VERSION@ 10 | -------------------------------------------------------------------------------- /R-src/share/R/examples-footer.R: -------------------------------------------------------------------------------- 1 | ### *