Hello, pointed to the article "Debugging Without (Too Many) Tears" of Mark Bravington in Rnews Vol 3/3, December 2003 there is a package mvbutils mentioned. So I started to install this package from within R > install.package(mvbutils) I receive an error essage that this package is not found! Is due to a merge,removal or rename of this package? When I try to follow this article by typing i.e: mtrace I receive also an error message, that function mtrace is not found? Where do I find the above mentioned package? thanks Thomas ---------------------------------------------------------------------------------------- platform i386-pc-linux-gnu arch i386 os linux-gnu system i386, linux-gnu status major 1 minor 9.1 year 2004 month 06 day 21 language R
Thomas Sch??nhoff wrote:> Hello, > > pointed to the article "Debugging Without (Too Many) Tears" of Mark > Bravington in Rnews Vol 3/3, December 2003 there is a package mvbutils > mentioned. > So I started to install this package from within R > > > install.package(mvbutils)You get the following error: Error: couldn't find function "install.package" after correcting the function name to install.packages(mvbutils) you get the follwoing error: Error in install.packages(mvbutils) : Object "mvbutils" not found after correcting the package name to be character, it should work: install.packages("mvbutils") Please read the error messages!!! No error message told you that the package is not available. Uwe Ligges> I receive an error essage that this package is not found! Is due to a > merge,removal or rename of this package? > > When I try to follow this article by typing i.e: > > mtrace > > I receive also an error message, that function mtrace is not found? > > Where do I find the above mentioned package? > > > thanks > > Thomas > > ---------------------------------------------------------------------------------------- > > platform i386-pc-linux-gnu > arch i386 > os linux-gnu > system i386, linux-gnu > status > major 1 > minor 9.1 > year 2004 > month 06 > day 21 > language R > > ______________________________________________ > R-help at stat.math.ethz.ch mailing list > stat.ethz.ch/mailman/listinfo/r-help > PLEASE do read the posting guide! > R-project.org/posting-guide.html