similar to: SOS:) help on install package

Displaying 20 results from an estimated 8000 matches similar to: "SOS:) help on install package"

2004 Jun 03
3
Problem with mgcv PACKAGES file format?
Hello All, I'm getting this error (Version: 1.9.0-1 on a debian system) > update.packages("mgcv") trying URL `ftp://mirror.aarnet.edu.au/pub/cran/src/contrib/PACKAGES' ftp data connection made, file length 169516 bytes opened URL .......... .......... .......... .......... .......... .......... .......... .......... .......... .......... .......... .......... ..........
2003 Apr 14
7
functions in a package
Hello, I have a beginner's Q: if i want to know all the functions provided by a package, what is command for that? in another word, Is there a command to list all the commands available in a packege? thanks a lot, yan
2003 Apr 16
4
good source for explaining input and output parameters of R functions
Hello, thank you all for answering my previous Qs.. I have a new Q: I am wondering is there good source for explaning input and output parameters of R function? In that aspect, I found the help documents in R is not that helpful:) I am struggling with trying to understand what some of the returned value means.. for example, for surf.ls() function, the help in R only describes 3 fields(the
2003 Apr 28
1
installed.packages() with no packages
Hello ... I found this due to a situation where installed.packages() was given a lib.loc argument that turned out to not have any R packages installed. As an example: > z <- tempfile() > dir.create(z) > installed.packages(z) Error in "colnames<-"(*tmp*, value = c("Package", "LibPath", pkgFlds)) : dimnames applied to non-array Looking at the code,
2004 Oct 04
1
update.packages() with R 2.0.0
Good day to all of you and thank you for reading this. I certainly must have done something awfully wrong when I downloaded and installed R 2.0.0 on a PC with Windows 98. You will find below what happens when I try to 'update.packages()'. I know what the first 'warning message' means. About the others, I ain't got no clue. Thank you very handsomely for your wisdom. And
2003 Mar 24
1
wavelet model on time series in R?
Hello, Is there package built for R that can do model/prediction on time series data using wavelet? If not, does anyone know what popular software can do that? Thanks much, yan
2004 Aug 01
1
locfit
Hi, I have a Q on locfit, E.g., I have an input data set of the form {(x, y, v)} , (x, y) is the location in a 2D space, v is the value at that location. I am wondering for the output of locfit(), if a given point (x, y) is in the input data set, is the value at (x, y) going to be the exactly same as the input? or it depends on the local fitting function? does my Q make sense? Thanks a lot in
2004 Oct 28
1
Error with package update
I received the following error when I attempted to update my packages: updating HTML package descriptions Warning messages: 1: DESCRIPTION file of package 'file28862' missing or broken in: packageDescription(p, lib = lib, fields = pkgFlds) 2: number of columns of result not a multiple of vector length (arg 2) in: rbind(retval, c(p, lib, desc)) 3: DESCRIPTION file of package
2006 Aug 29
1
PATCH: Add fields argument to installed.packages and available.packages
Hi all, The write_PACKAGES function has a 'fields' argument that allows a user generating a PACKAGES file to specify additional fields to include. For symmetry, it would be nice for the available.packages function to be able to read those extra fields when specified. Similarly, it would be useful for installed.packages to have a 'fields' argument. This would allow a user to
2003 Jan 16
7
X11 device now needs to be explicitly started?
_ platform i686-pc-linux-gnu arch i686 os linux-gnu system i686, linux-gnu status major 1 minor 6.2 year 2003 month 01 day 10 language R > Until this version, I've not had to explicitly start the x11 device. Now,
2003 Jan 09
2
using arima() function
HI, there, When i use R, i tried to use function arima(), it complains: Error: couldn't find function "arima" But when I type "help.search("arima") ", I got arima() poped up.. arima(ts) ARIMA Modelling of Time Series arima.sim(ts) Simulate from an ARIMA Model arima0(ts) ARIMA Modelling of Time Series -- Preliminary
2003 Jan 17
3
kriging in R
Hi, all, Have anyone used kringing included in R? How is it? Does it handle anisotropy data well? How does it compare with Kriging in Arc/Info? or other geostatistics software customized to do kriging or other geostatistics functions? I tried Easykriging, a geostatistics tool developed for Matlab. It has very nice GUI, but it does not provide library which i can call in my programs. so it is
2003 May 20
3
a quick Q about memory limit in R
Hello, there, I got this error when i tried to run " data.kr <- surf.gls(2, expcov, data, d=0.7);" "Error: cannot allocate vector of size 382890 Kb Execution halted" My data is 100x100 grid. the following is the summary of "data": > summary(data); x y z Min. : 1.00 Min. : 1.00 Min. :-1.0172 1st Qu.: 26.00
2010 Jan 26
1
update.packages on MS Windows with //server/share paths
Hi, > update.packages(ask='graphics') gives me multiple warning (one per updated package?) similar to ... Warning: unable to move temporary installation '\\Server02\stats\R\library\2.10\file3de56e0d\locfit' to '\\Server02\stats\R\library\2.10\locfit' The final, updated, folders do not end up where they should be. I can move them 'by hand', but it is an
2003 Apr 16
2
import data from Matlab & error msg when install package "e1071"
Hello, I am trying to import data from Matlab.. when i looked up R documentation, it says, package "e1071" have command (read.octave) to import data from octave. but when I tried to install package by using: install.packages("e1071"); I got the following message: ( BTW, my platform is linux version 2.4.18-3 my gcc is 2.96). * Installing *source* package 'e1071' ...
2010 Jan 02
2
need to free space on a root partition.
Hello, there, Happy new year everyone! I am puzzled here. Could some expert help me shed some light on this? this may not be a centos specific Q.. i have a linux machine. and the root partition (/) is full.. so I moved a dir from /data to /var (/var is on a different partition), and created a link from /data/fa to /var/xyz, the files under /var/xyz is about 8G, du /var/fa 8701248
2005 Oct 05
1
how do I write Rd file for this?
Dear R-devel, I'm working on Prof. Loader's new version of locfit to try to get it pass R CMD check. I'm almost there, but I have a problem with some Rd files that I hope some one can help me resolve. Here's an example: In the package there's a function called locfit.censor(). This function can be used in a few different ways: locfit.censor(x, y, cens, ...)
2003 Jan 17
2
nls
HI, i have some prob when i try to use nls(). my data is 1D vector, I tried to use a polynomial function(order is 3) to fit it. the data series is stored in x. the a0, a1, a2, a3 below is coefficient, which i hope i can get from calls "nls" > z <- nls( ~ a0 + a1 * x + a2 * x * x + a3 * x * x * x, data = x ) Error in match.call(definition, call, expand.dots) : .Primitive... is
2010 Jan 24
1
how to change fsize to unlimited..
Dear centos experts, I am wondering is there a way for me to change ulimit fsize parameter? I am trying to change it to unlimited, so I added the following line to /etc/security/limits.conf - - fsize -1 but it does not work, and a reboot will reset the content of limits.conf. thanks, yan
2012 Apr 19
5
User defined panel functions in lattice
Hi I have a problem with passing line and symbol parameters to user defined panel functions I had a look at the archives and created a panel function on what was shown and on panel.loess. I could not to get panel.locfit to work for what I intend it for. There is another layer to work with before success as lp() is called from locfit. xx <- structure(list(Farm = c("A",