Displaying 20 results from an estimated 4000 matches similar to: "Install problems."
1998 Nov 16
5
Solaris make for 0.63 failing
I shouldn't try to do this on Monday morning. Can anyone suggest why the make
for R 0.63 is failing for me under Solaris (SunOS 5.6).
Paul Gilbert
...
creating src/scripts/html2dos
creating tests/Makefile
creating tests/Examples/Makefile
creating src/include/Platform.h
R is now configured for sparc-sun-solaris2.6
Source directory: .
Installation directory: /usr/local
C
1999 Jan 09
1
Install problems.
- - - - - - - - - - - - - - Original Message - - - - - - - - - - - - - -
Hi,
I am having trouble installing R on a Solaris 2.5.1 machine. After running
the configure script, I run make, which quickly results in the following:
make: Fatal error: Don't know how to make target `src/*/*.[chfy]'
Please can you help?
thanks,
Niall.
1998 Nov 23
1
Problems compiling R-0.63.0
When I try to compile R v0.63.0 on my SUN (Solaris 2.5.1 using g77) I get the
error message
make: Fatal error: Don't know how to make target
`/sw/sun4_55/R-0.63.0/src/*/*.[chfy]'
I seems that one source file can't be compiled. Does anybody know what I can do?
Frank Beimfohr
University of Dortmund, Germany
1998 Nov 30
1
make error of R-0.63
Dear all,
Compiling R-0.63 on my Alpha machine immediately encounters the
following message. Your help is appreciated.
Make: Don't know how to make ./src/*/*.[chfy]. Stop.
Regards,
--
Xiaoming Cai
School of Geography
.&______~*@*~______&. University of Birmingham
1998 Oct 07
2
R-beta: R0.62.3 installation on RedHat 5.0
I have R-0.62.3 and RedHat 5.0 with fort77.
At the office R is running but when I install a package, eg. 'akima'
I get a message
make: f77: Command not found
'R INSTALL library' does not accept fort77, but R installation checks
f77/g77/fort77. Is there an easy way to edit some file and replace
f77/g77 with fort77?
At home I have the same R and Linux versions, but when
1999 Feb 13
1
Compiling R
I have tried to compile R-0.63.2 for Linux Red Hat 5.0.
It seems to have worked well until the last step 'make install'
I get the following messages
make[2]: Entering directory `/home/moshe.segal/rhome/R-0.63.2/src/main'
fort77 -export-dynamic -o ../../bin/R.binary arithmetic.o array.o
attrib.o bind.o builtin.o character.o coerce.o colors.o complex.o
context.o cov.o cum.o debug.o
2000 Aug 11
2
R-devel Aug-09 1.2.0 build on hpux10.20
Hello,
I had to set CPPFLAGS and FC=fort77 but configure saw atlas and used
it instead of blas. However atlas for hp seems to missing some libs. I
had to add -lblas in Makeconf. Everything builds ok. But modreg and
tcltk doesn't load.
R : Copyright 2000, The R Development Core Team
Version 1.2.0 Under development (unstable) (2000-August-9)
R is free software and comes with ABSOLUTELY NO
1998 Nov 14
2
S-Poetry in R
Kjetil Halvorsen mentioned a book call "S-Poetry in R". I checked with
amazon.com and Barnes and Noble but they don't have it listed. Can somebody
please give me the complete reference and where it can be obtained.
Suggestion: Might it be possible to put a list of the most important and
new literature about R, S, and S+ which has a direct bearing on R in the
Documentation section
1998 Nov 11
1
Just curiosity
Can anybody explain why
> ?function
+
+
+ )
Error: syntax error
so that
> ?"function"
is necessarty???
This seems reasonable with
?"?",
but I can not see why the "" are necessary with function
(and some other examples)
Kjetil Halvorsen
-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-
r-help mailing list -- Read
2000 Mar 22
4
R-release dynamic load problem on HPUX10.20
Hello,
I just pulled the patched release:
R-release Version 1.0.0 Patched (March 19, 2000), on HPUX10.2
I am having dynamic library load problems. I configured with:
./configure --prefix=/home/absd00t/local --with-readline --with-x
After changing etc/Makeconf to take -lblas out of libs (the blas
library provided by the system is not a shared library), system was
built without any interruptions.
2003 Oct 12
6
Rd problems
Hola!
I have the following in a .Rd file:
\eqn{\mbox{coef} = c(\mbox{coef}[1],\ldots, \mbox{coef}[n]) }
{coef = c(coef[1], coef[2], \dots, coef[n])}
However, both arguments come out in the latex file!
Whats happening?
Kjetil Halvorsen
1998 Nov 20
2
R and hdf
Hi,
I've been playing with R for only a few days, so I'm not terribly
familiar with it yet. Has anyone ever done any work using HDF or
NetCDF files with R? Both file formats have libraries which can be
linked to a program to read and write data to these formats. Is this
sort of thing possible with R? We are planning to use the HDF format to
store experimental data collected by some
2004 Oct 04
4
Off-Topic: LaTeX package listings
Hola!
I ask here since I learnt from this list that the LaTeX package listings
should be good
for typesetting R code. I encountered one problem:
\begin{lstlisting}
X %*% V
\end{lstlisting}
in the output the * in %*% disappears! same with %/%, etc, the /
disappears.
Any ideas?
Kjetil
--
Kjetil Halvorsen.
Peace is the most effective weapon of mass construction.
--
2004 Sep 17
3
Removing constants from a data frame
Suppose I have
x<-data.frame(v1=1:4, v2=c(2,4,NA,7), v3=rep(1,4),
v4=LETTERS[1:4],v5=rep('Z',4))
or a much larger frame, and I wish to test for and remove the constant
numeric columns.
I made:
is.constant<-function(x){identical(min(x),max(x))}
and
apply(x,2,is.constant) # Works for numerics
x[,-which(apply(x,2,is.constant))]
I'd really like to be able to
2003 Aug 16
4
unclass
Have I been sleeping in class?
rw1071 from CRAN, windows XP
incidencia is made by a call to tapply
> class(incidencia)
[1] "array"
> incidencia <- unclass(incidencia)
> class(incidencia)
[1] "array"
Kjetil Halvorsen
2003 Aug 22
2
converting factor to numeric
Hola!
The R FAQ says:
7.12 How do I convert factors to numeric?
It may happen that when reading numeric data into R (usually, when
reading in a file), they come in as factors. If f is such a factor
object, you can use
as.numeric(as.character(f))
to get the numbers back. More efficient, but harder to remember, is
as.numeric(levels(f))[as.integer(f)]
In any case, do not call as.numeric()
2006 Sep 19
2
mgcv in R-2.4.0.alpha
Hola!
I am sending this to the list since emails from me to Simon Wood
has bounced earlier.
I get:
> library(tsDyn)
Loading required package: mgcv
Erro en `parent.env<-`(`*tmp*`, value = NULL) :
use of NULL environment is defunct
Error: package 'mgcv' could not be loaded
> library(mgcv)
Erro en `parent.env<-`(`*tmp*`, value = NULL) :
use of NULL environment
2003 Sep 02
2
identify with image
Hola!
I will want to identify pixels in an image with the mouse, for
so getting the image data from the matrix(es), for use in subsequent
discriminant analysis. But the following bombs R:
(windows XP, rw1071)
> str(baboon)
list()
- attr(*, "size")= int [1:2] 512 512
- attr(*, "cellres")= num [1:2] 1 1
- attr(*, "bbox")= num [1:4] 0 0 512 512
- attr(*,
2003 Sep 27
3
coloring dendrgram in heatmap?
Using the heatmap function in mva, it seems to be hard to use different
colors in the edges leading to different groups of objects, as commonly done
in many heatmaps in the microarray graphics. Any suggestions? Thanks.
max
2010 Jan 30
3
Competiciín de classificación!!! Fwd: [R] Classification of supernovae - a challenge
Hola!
Este mail llegó a r-help hoy, yo lo mandó también a esta lista. Es
interesante
con competiciones de predicción/clasificación! ¿Alguien que quiere cooperar?
Kjetil
---------- Forwarded message ----------
From: Kjetil Halvorsen <kjetilbrinchmannhalvorsen@gmail.com>
Date: Fri, Jan 29, 2010 at 12:19
Subject: Fwd: [R] Classification of supernovae - a challenge
To: Kjetil Halvorsen