I got the Warning message below when I tried to load Locfit. What is wrong? Regards Ola Asteman ------------------------------------------------------------------------------------------------------ R version 2.4.0 (2006-10-03) Copyright (C) 2006 The R Foundation for Statistical Computing ISBN 3-900051-07-0 R is free software and comes with ABSOLUTELY NO WARRANTY. You are welcome to redistribute it under certain conditions. Type 'license()' or 'licence()' for distribution details. R is a collaborative project with many contributors. Type 'contributors()' for more information and 'citation()' on how to cite R or R packages in publications. Type 'demo()' for some demos, 'help()' for on-line help, or 'help.start()' for an HTML browser interface to help. Type 'q()' to quit R.> library(foreign) > library(mgcv)This is mgcv 1.3-19> library(locfit)Loading required package: akima Error: package 'akima' could not be loaded In addition: Warning message: there is no package called 'akima' in: library(pkg, character.only = TRUE, logical = TRUE, lib.loc = lib.loc)>------------------------------------------------------------------------------ This e-mail and any attachment may be confidential and may a...{{dropped}}
Ola Asteman wrote:> > I got the Warning message below when I tried to load Locfit. What is wrong?Please read the posting guide which suggests to use a sensible subject line.> Regards > Ola Asteman > > ------------------------------------------------------------------------------------------------------ > > R version 2.4.0 (2006-10-03)It makes sense to upgrade to a recent version of R.> Copyright (C) 2006 The R Foundation for Statistical Computing > ISBN 3-900051-07-0 > > R is free software and comes with ABSOLUTELY NO WARRANTY. > You are welcome to redistribute it under certain conditions. > Type 'license()' or 'licence()' for distribution details. > > R is a collaborative project with many contributors. > Type 'contributors()' for more information and > 'citation()' on how to cite R or R packages in publications. > > Type 'demo()' for some demos, 'help()' for on-line help, or > 'help.start()' for an HTML browser interface to help. > Type 'q()' to quit R. > >> library(foreign) >> library(mgcv) > This is mgcv 1.3-19 >> library(locfit)How was locfit installed? install.packages("locfit", dependencies = TRUE) should also install the package's dependencies - and you have not all installed, among them "akima". Uwe Ligges> Loading required package: akima > Error: package 'akima' could not be loaded > In addition: Warning message: > there is no package called 'akima' in: library(pkg, character.only = TRUE, > logical = TRUE, lib.loc = lib.loc) > > > > ------------------------------------------------------------------------------ > This e-mail and any attachment may be confidential and may a...{{dropped}} > > ______________________________________________ > R-help at stat.math.ethz.ch mailing list > https://stat.ethz.ch/mailman/listinfo/r-help > PLEASE do read the posting guide http://www.R-project.org/posting-guide.html > and provide commented, minimal, self-contained, reproducible code.
You don''t have installed the akima pakage. install.packages("akima", dep=T) -- Henrique Dallazuanna Curitiba-Paraná-Brasil 25° 25'' 40" S 49° 16'' 22" O On 28/08/07, Ola Asteman <ola.asteman@trygghansa.se> wrote:> > > > I got the Warning message below when I tried to load Locfit. What is > wrong? > > Regards > Ola Asteman > > > ------------------------------------------------------------------------------------------------------ > > R version 2.4.0 (2006-10-03) > Copyright (C) 2006 The R Foundation for Statistical Computing > ISBN 3-900051-07-0 > > R is free software and comes with ABSOLUTELY NO WARRANTY. > You are welcome to redistribute it under certain conditions. > Type ''license()'' or ''licence()'' for distribution details. > > R is a collaborative project with many contributors. > Type ''contributors()'' for more information and > ''citation()'' on how to cite R or R packages in publications. > > Type ''demo()'' for some demos, ''help()'' for on-line help, or > ''help.start()'' for an HTML browser interface to help. > Type ''q()'' to quit R. > > > library(foreign) > > library(mgcv) > This is mgcv 1.3-19 > > library(locfit) > Loading required package: akima > Error: package ''akima'' could not be loaded > In addition: Warning message: > there is no package called ''akima'' in: library(pkg, character.only = TRUE, > logical = TRUE, lib.loc = lib.loc) > > > > > > > ------------------------------------------------------------------------------ > This e-mail and any attachment may be confidential and may a...{{dropped}} > > ______________________________________________ > R-help@stat.math.ethz.ch mailing list > https://stat.ethz.ch/mailman/listinfo/r-help > PLEASE do read the posting guide > http://www.R-project.org/posting-guide.html > and provide commented, minimal, self-contained, reproducible code. >[[alternative HTML version deleted]]