similar to: Problem with R INSTALL

Displaying 20 results from an estimated 2000 matches similar to: "Problem with R INSTALL"

2002 Jul 18
1
R INSTALL: problem related to LD_LIBRARY_PATH
Well, I've found that the line in INSTALL that gives the problem is gzip -dc "${1}" | (cd "${tmpdir}" && tar -xf -) ("tar: /usr/local/lib/libpthread.so.0: version `GLIBC_2.2' not found (required by /lib/librt.so.1)") If I run that command from the shell, i.e., gzip -dc KernSmooth_2.22-7.tar.gz | (cd /tmp/R.INSTALL.2186 && tar -xf -) it runs
2003 Mar 04
1
problem at installing Rade
Hi! I try to install the R version of ade4 on a linux (suse7.3) box with R 1.6.2 (from rpm) and get /usr/local/bin/R INSTALL ade4_1.00.tar.gz tar: /usr/local/lib/libpthread.so.0: version `GLIBC_2.2' not found (required by /lib/librt.so.1) ERROR: cannot extract package from 'ade4_1.00.tar.gz' But I actually have glibc 2.2.4 (at least this is what my suse's Yast conf. tool
2002 Jul 15
1
R1.5.1 compilation ans install: 2 previous questions
I'm geting ready to compile and install R-1.5.1 (R-patched_2002-07-15.tar.gz) on Linux (Suse 8.0, 2 AMD proc., ATLAS libs installed). My current version is R.1.4.0 I'd like to get advice on two doubts: 1. Is it better that I remove my current /usr/lib/R directory? 2. Regarding ATLAS, the R-1.5.1 R-admin manual states : "This is currently not supported. The problem is that SIGINT
1999 Jul 15
0
attaching directories in R?
Hi! I'm trying to use R. In S+ I use to have different projects in different directories. To make the functions and other objects from a directory available and to use that directory as default, I just do: attach(directory, pos = 1) where directory is, for example, "/home/alobo/S/bolivia1" Acutually, I have a simpe function (work) to do this: > work function(directorio) {
1999 Aug 30
1
convex hulls
Does anybody know if there are functions to: 1. Define a convex hull on a space with more than 2 dimensions? chull just works for a plane. 2. Numerically select elements within a given complex hull. Thanks! Dr. Agustin Lobo Instituto de Ciencias de la Tierra (CSIC) Lluis Sole Sabaris s/n 08028 Barcelona SPAIN tel 34 93409 5410 fax 34 93411 0012 alobo at ija.csic.es
2001 Jul 22
0
lapply and for
Agustin Lobo asks (and I interpolate in his question) > -----Original Message----- > From: Agustin Lobo [mailto:alobo at ija.csic.es] > Sent: Monday, 23 July 2001 7:45 AM > To: r-help > Subject: [R] lapply and for > > > Given a list as such: > > > milista > $"1": > [1] 23 25 11 > > $"2": > [1] 34 2 > >
2002 Oct 10
0
Re: [R-gui] NEdit Highligth patterns for R
-----Forwarded Message----- > From: Ernesto Jardim <ernesto at ipimar.pt> > To: Agustin Lobo <alobo at ija.csic.es> > Subject: Re: [R-gui] NEdit Highligth patterns for R > Date: 10 Oct 2002 14:36:24 +0100 > > Hi > > You have to install the *.pats file. > > Use > > nedit -import R-5.1.pats > > then "save defaults". > > If
2003 Oct 15
2
Subseting in a 3D array
Hi! I have a 3d array: > dim(ib5km15.dbc) [1] 190 241 19 and a set of positions to extract: > ib5km.lincol.random[1:3,] [,1] [,2] [1,] 78 70 [2,] 29 213 [3,] 180 22 Geting the values of a 2D array for that set of positions would be: > ima <- ib5km15.dbc[,,1] > ima[ib5km.lincol.random[1:10,]] but don't find the way for the case of the 3D array: >
2001 Nov 26
2
summary() and range(): inconsistency?
I've found the following and I'm kind of confused: > summary(delme) Min. 1st Qu. Median Mean 3rd Qu. Max. 1 2950 5699 5756 8572 11680 > range(delme) [1] 1 11675 summary() and range() give different Max. value for the same vector! Agus Dr. Agustin Lobo Instituto de Ciencias de la Tierra (CSIC) Lluis Sole Sabaris s/n 08028 Barcelona SPAIN tel
2001 Sep 07
1
"load" for text file with functions?
Hi! I'm writing down the methods that I used to migrate from Splus to R and expand a bit the R docs for this subject. Prior to send these notes to the FAQ curator I would like to make sure on the following: Given an ascii text file with several functions (i.e., myfuncs.txt), is there any equivalent to load(), so that the functions become usable in R? Or is it necessary to install it as a
1999 Jul 10
0
R,S,Octave,Matlab:SUMMARY
Dear R makers and users. I summarize answers to my question. Thanks for your help. The conclusion seems to be that, in terms of performance with large datasets, Matlab=Octave > R > Splus5.1 > Splus5.0 but Matlab/Octave lack many of the stat functions of R/S, and, R does not have as many time-series functions as S+ (but see last message to r-announce by adrian.trapletti at
1999 Jul 15
2
S objects to R
I've tried to move objects from S to R. In S+, I use data.dump() and data.restore(). I've made a file all.dum using data.dump(ls()) in S+, but the R command load("all.dum") gives an error: > load("/jaz/all.dum") Error: restore file corrupted -- no data loaded Is there any way to pass my objects from S+ to R? Thanks Agus Dr. Agustin Lobo Instituto de Ciencias de
2003 Jul 04
1
Problem with fitdistr for beta
I have the following problem: I have a vector x of data (0<x<=1 ) with a U-shaped histogram and try to fit a beta distribution using fitdistr. In fact, hist(rbeta(100,0.1,0.1)) looks a lot like my data. The equivalent to the example in the manual sometimes work: > a <- rbeta(100,0.1,0.1) > fitdistr(x=a, "beta", start=list(shape1=0.1,shape2=0.1))1) > shape1
1999 Nov 22
1
Fit with constraints (fwd)
I would like to fit a model of the type Y = Xf + e where f are cover fractions (or percent cover). Therefore, I must constrain the fit to 1. sum(f) = 1 2. 0<= f <=1 How can I introduce these 2 constraints in a ML fit? Currently, I'm using nlregb and I'm using the "upper and low" keywords to set the bounds and use the following to ensure that sum(f) = 1: let's say
1999 Jul 28
2
3d in R
Dear R-users and R-developpers, I've not been able to find 3d graphics in R, like Splus spin() or brush(). Are there any that I've missed and/or is anybody working on implementing these type of functions? Thanks Dr. Agustin Lobo Instituto de Ciencias de la Tierra (CSIC) Lluis Sole Sabaris s/n 08028 Barcelona SPAIN tel 34 93409 5410 fax 34 93411 0012 alobo at ija.csic.es
2002 Jul 22
1
Problem with text() and pdf()
Hi! I run a function in which I fit a linear model, split the graphic window with layout, plot the data and the linear fit to the left, and the equation to the right using text() in this way (probably there's a better way): par(pty="m") plot(c(0,1),c(0,1), type="n",axes=F,xlab="",ylab="") text(0.25,0.5, paste("y =
2001 Aug 26
1
Display of 3d arrays
Hi! Is it possible to display a 3d array as an RGB image? For example, given the following array: > matriz3d , , 1 [,1] [,2] [,3] [,4] [,5] [1,] 170 174 173 172 161 [2,] 171 178 174 166 149 [3,] 168 174 173 166 156 [4,] 171 170 173 166 164 [5,] 167 170 170 171 169 , , 2 [,1] [,2] [,3] [,4] [,5] [1,] 138 131 128 128 125 [2,] 138 127 129 122 134
2001 Nov 13
1
Selecting transitive couples
Dear list, I'm trying to improve the following process: Let pairs be a 2 col matrix of integers such as: 2 5 3 6 4 56 5 2 6 8 7 56 8 6 etc. My goal is to select the transitive pairs, i.e., in the above example: 2 5 (because there is 5 2 as well) 6 8 (because there is 8 6 as well) The task is simple with a for loop, but can anybody suggest a "genuine R" solution? (That is, a
2002 Mar 13
1
R matrix to Python
I'm trying to export an R (1.4.0 on linux) matrix to python (+Pyclimate) via a binary file. The problem is that while R writes by columns, python reads by rows. For a 2D matrix, there is no problem: writeBin writes vectors, so writeBin(t(x)[1:length(x)],...) works fine. But the objects I want to export are 3D arrays (slice rasters of lat,lon for each time t). One way is to use a loop over
2003 Jan 14
1
R-release.diff.gz: "patch detected! Assume -R? [n]"
Hi! I'm upgrading to 1.6.2. (linux suse7.3). I see that there is a patch in R-release.diff.gz. 1. Is this patch stable? In other words, is it adviced that I install R-release.diff.gz ? 2. When I do: zcat R-release.diff.gz | patch -p1 -E I get many lines such as: patching file AUTHORS Reversed (or previously applied) patch detected! Assume -R? [n] Should I just accept the default