I am using the 0.50 alpha version of R packaged (in 3 parts) by Kurt for Debian Linux. Package: r-base Status: install ok installed Priority: optional Section: local Maintainer: Kurt Hornik <Kurt.Hornik at ci.tuwien.ac.at> Version: 0.50b7-1 Depends: libc5, xlib6, libreadline2 Description: R, a language not entirely unlike the language S. Package: r-contrib Status: install ok installed Priority: optional Section: local Maintainer: Kurt Hornik <Kurt.Hornik at ci.tuwien.ac.at> Version: 0.0-1 Depends: r-base Description: Add-on packages for R. Currently contains the following packages: *) acepack ace() and avas() for selecting regression transformations *) bootstrap Functions for the book "An Introduction to the Bootstrap" *) ctest Classical tests *) date Functions for handling dates *) e1071 Functions of the Department of Statistics (e1071), TU Wien *) fracdiff Fractionally differenced ARIMA(p,d,q) models *) gee Generalized Estimating Equation models *) jpn Plot Japan's coast line and prefectures *) oz Plot Australia's coast line and state boundaries *) splines Regression spline functions *) survival4 Survival analysis Package: r-doc Status: install ok installed Priority: optional Section: local Maintainer: Kurt Hornik <Kurt.Hornik at ci.tuwien.ac.at> Version: 0.50b7-1 Depends: r-base Description: Documentation for R in dvi and HTML format. I thought I would play around with the splines library a bit to see if some of the extensions that Bill Venables and I created would fit in. Right now I am having problems loading the library because the R code uses := for assignment. Should that be changed to <- now that the code is a part of a library? R> library(splines) Error: couldn't find function ":=" R> library("splines") Error: couldn't find function ":=" R> bs Error: Object "bs" not found R> library(survival4) Autoloading required library: splines Error: couldn't find function ":=" If you are interested in the Debian Linux packages, check a CRAN (Comprehensive R Archive Network) site in the bin/ix86-linux directory. One such site is ftp://franz.stat.wisc.edu/pub/R Are we going to follow in the tradition of Java Beans and create an concept of CRAN Berries? =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-r-help mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html Send "info", "help", or "[un]subscribe" (in the "body", not the subject !) To: r-help-request at stat.math.ethz.ch =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
On Tue, 22 Apr 1997, Douglas Bates wrote:> I thought I would play around with the splines library a bit to see if > some of the extensions that Bill Venables and I created would fit in. > Right now I am having problems loading the library because the R code > uses := for assignment. Should that be changed to <- now that the > code is a part of a library?Yes -- I thought it had all been changed by now. The second R release to provide libraries also ensured that their contents automagically went into the system environment. In R0.50 R&R have finally removed the unnecessary := statement, forcing us to catch up and fix our libraries. Thomas Lumley -----------------------------------------------------+------ Biostatistics : "Never attribute to malice what : Uni of Washington : can be adequately explained by : Box 357232 : incompetence" - Hanlon's Razor : Seattle WA 98195-7232 : : ------------------------------------------------------------ =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-r-help mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html Send "info", "help", or "[un]subscribe" (in the "body", not the subject !) To: r-help-request at stat.math.ethz.ch =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
Anthony Rossini
1997-Apr-23 00:48 UTC
CRAN berries (was: Re: R-beta: library(splines) in version 0.50 alpha)
>>>>> "Douglas" == Douglas Bates <bates at stat.wisc.edu> writes:Douglas> Are we going to follow in the tradition of Java Beans and Douglas> create an concept of CRAN Berries? I hope so. The idea reminds me of a cross between one of my favorite packages/gui's (ViSta, and the icon map/guide map) and a nifty program, LabView (if you aren't familiar with it, it is a drop-and-drag program for designing lab measurement and data analysis (from the lab measures) -- just "connect the dots" to form a new collection/analysis tool for recording lab data...). (for those of you not familiar with java beans, they are reuseable software components designed to be worked with visually through a gui, rather than "programmacally"). But it's a long way off :-(. best, ---- -tony (Anthony Rossini) Statistics Dept., U South Carolina rossini at stat.sc.edu Columbia, SC 29208 http://www.stat.sc.edu/~rossini/ 803-777-3578(O) 803-777-4048 (fax) =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-r-help mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html Send "info", "help", or "[un]subscribe" (in the "body", not the subject !) To: r-help-request at stat.math.ethz.ch =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
>>>>> Douglas Bates writes:> I am using the 0.50 alpha version of R packaged (in 3 parts) by Kurt > for Debian Linux.> Package: r-base > Status: install ok installed > Priority: optional > Section: local > Maintainer: Kurt Hornik <Kurt.Hornik at ci.tuwien.ac.at> > Version: 0.50b7-1 > Depends: libc5, xlib6, libreadline2 > Description: R, a language not entirely unlike the language S.> Package: r-contrib > Status: install ok installed > Priority: optional > Section: local > Maintainer: Kurt Hornik <Kurt.Hornik at ci.tuwien.ac.at> > Version: 0.0-1 > Depends: r-base > Description: Add-on packages for R. > Currently contains the following packages: > *) acepack ace() and avas() for selecting regression transformations > *) bootstrap Functions for the book "An Introduction to the Bootstrap" > *) ctest Classical tests > *) date Functions for handling dates > *) e1071 Functions of the Department of Statistics (e1071), TU Wien > *) fracdiff Fractionally differenced ARIMA(p,d,q) models > *) gee Generalized Estimating Equation models > *) jpn Plot Japan's coast line and prefectures > *) oz Plot Australia's coast line and state boundaries > *) splines Regression spline functions > *) survival4 Survival analysis> Package: r-doc > Status: install ok installed > Priority: optional > Section: local > Maintainer: Kurt Hornik <Kurt.Hornik at ci.tuwien.ac.at> > Version: 0.50b7-1 > Depends: r-base > Description: Documentation for R in dvi and HTML format.> I thought I would play around with the splines library a bit to see if > some of the extensions that Bill Venables and I created would fit in. > Right now I am having problems loading the library because the R code > uses := for assignment. Should that be changed to <- now that the > code is a part of a library?R> library(splines)> Error: couldn't find function ":="R> library("splines")> Error: couldn't find function ":="R> bs> Error: Object "bs" not foundR> library(survival4)> Autoloading required library: splines > Error: couldn't find function ":="Yes, `:=' is gone now, and should be `<-'. I've updated the corresponding library sources and the Debian GNU/Linux package. The new versions should appear on any CRAN site by tomorrow. -k =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-r-help mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html Send "info", "help", or "[un]subscribe" (in the "body", not the subject !) To: r-help-request at stat.math.ethz.ch =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=