Displaying 20 results from an estimated 2000 matches similar to: "Loading namespaces"
2003 Apr 29
1
Installing On Solaris
I've downloaded gcc 2.95, and installed R-1.7.0
It appears to config properly, the config.out is at the following URL:
http://www.phineas.pwp.blueyonder.co.uk/config.log
Running make does not appear to work
the errors are summarized:
bash: ar: command not found
*** Error code 127
make: Fatal error Command failed for target 'libappl.a'
*** Error code 1
make: Fatal error: Command failed
2003 Apr 28
1
Sorry
On my previous message I gave incorrect URL's for the configuration output.
They should be
www.phineas.pwp.blueyonder.co.uk/config.log and
www.phineas.pwp.blueyonder.co.uk/config.out
Also this technique appears to work with Netscape on Solaris, but not IE on
Windows. If this is not a sensible way to post diagnostic output let me know
and I will post them in a different way.
Phineas Campbell
2005 Jan 20
0
Compile R-2.0.1 on SPARC Solaris 5.9
I'm using GCC 3.4.2 to build R-2.0.1 from sources downloaded from the
University of Bristol mirror.
bash-2.05$./configure
<SNIP>
R is now configured for sparc-sun-solaris2.9
Source directory: .
Installation directory: /usr/local
C compiler: gcc -g -O2
C++ compiler: g++ -g -O2
Fortran compiler: g77 -g -O2
Interfaces
2005 Jun 30
0
Relationship between dyn.load and library.dynam
I am a little confused about the relationship between library.dynam and
dyn.load
>From the documentation:
library.dynam(chname,
Load the specified file of compiled code if it has not been loaded
already, or unloads it. Where chname is a character string naming a
shared library to load.
and
dyn.load(x, local = TRUE, now = TRUE)
Load or unload shared libraries, and test whether a C function
2004 Dec 31
4
install.packages() for local source file
Wish to install a local source package on Un*x platform from
within R. Same thing as I can accomplish from cmdline as
$ export R_LIBS=~/R/library
$ cd /path/to/pkg
$ R CMD INSTALL -l $R_LIBS <pkgname>
So, how do you go about this anyway?
And isn't this a bug in 'install.packages'?
-------
$ R
R : Copyright 2004, The R Foundation for Statistical Computing
Version 1.9.0
2004 Aug 04
1
installing package with version number using namespaces & dynamic library
Hi,
I wonder whether a package with namespace & dynamic library can be installed
with the version number attached, ie. with the argument --with-package-versions.
Is this currently possible?
Using R 1.9.1 on Debian 3.0 I encounter a problem when trying to load a package
installed with
R91 CMD INSTALL --with-package-versions -l /mnt/local/R/R-1.9.x-libs-EpiR RIO
in R started with
R91
2006 Apr 21
1
Linker problem in installing 64-bit R
Hi,
I am trying to compile R-2.2.1 on Solaris 2.9 with a 64-bit build. Following
the instructions in "R Installation and Adminstration", I changed the
following settings in "config.site":
CC="gcc -m64"
F77="g77 -64"
CXX="g++ -m64"
LDFLAGS="-L/usr/local/lib/sparcv9 -L/usr/local/lib"
But I got the following error messages:
2010 Apr 22
1
Thunderbird namespace handling
Hello,
I've noticed that Thunderbird (3.0.3) seems to wrongly "repeat" the namespace
prefix when selecting the top level maildir of a namesapce.
It doesn't occur if "list=yes" and TB has no clue about the namespace prefix.
But it seems to happen only when TB is aware of the namespace prefix, either
via the NAMESPACE command (so in "hidden=no" setups) or via
2003 Mar 24
1
Install on Solaris 5.9
I'm trying to install R-1.6.2 on a Sparc machine running Solaris 5.9. I download and unpack R, run ./Configure from the R directory. Configure fails.The last line on the Configure script prints is 'Checking for Fortran 77 name-mangling scheme', This output and the config.log files are available at:
http://www.phineas.pwp.blueyonder.co.uk/config.log
and
2005 Jan 26
2
Source code for "extractAIC"?
Dear R users:
I am looking for the source code for the R function extractAIC. Type the
function name doesn't help:
> extractAIC
function (fit, scale, k = 2, ...)
UseMethod("extractAIC")
<environment: namespace:stats>
And when I search it in the R source code, the best I can find is in (R
source root)/library/stats/R/add.R:
extractAIC <- function(fit, scale, k = 2,
2006 Jun 04
2
slanted ends of horizontal lines for certain line widths
Hello,
if I plot a horizontal line, e.g.,
plot(c(1,2),c(1,1),xlim=c(0,3),lwd=2,type="l")
or
plot(c(1,2),c(1,1),xlim=c(0,3),lwd=4,type="l")
then the left end (1st example) or both ends (2nd example) of the lines
are not rectangular but slanted on the graphical display (screen).
That behavour first occurred when I was trying to plot a stepfun, e.g.,
y <-
2005 Feb 23
1
Graphics devices file[name] argument
Just got trapped by inconsistency of name of first argument
for file-based graphics devices. Both 'file' and 'filename'
are currently in use depending on the device. I ran on a
machine without PNG support which my code used postscript
as the backup device and choked here.
> do.call(device, list(filename = pathname,
height = height,
2004 Sep 21
2
png problem
Dear R-users,
I have a small problem with the function png(), when used with the
argument colortype="pseudo.cube".
> png("toto.png", colortype="pseudo.cube")
> image(matrix(rnorm(10000), 100, 100))
> dev.off()
R is blocked at the last command (R does not
print any prompt after the last command). Nothing is
written in the file (Gimp indicates that the
2004 Oct 28
2
Weighted regresion using lm
Hi:
Could anyone help me to clarify this: are the weights normalized inside lm
function (package:stats) before applied to the error term? For example:
>lm (cost ~ material, weights=quatity, data=receipt)
will lm normalize quatity such that sum(quatity) = 1? I traced to lm.wfit and
then the weights get transferred into a precompiled FORTRAN module so I can't
figure out. Thanks!
2005 Oct 27
1
Puzzled over curve() syntax.
It's probably toadally elementary (and, like, duhhhhh) but
I can't figure out why the following doesn't work:
curve(function(x){qnorm(x,4,25)},from=0,to=1)
I get the error:
Error in xy.coords(x, y, xlabel, ylabel, log) :
'x' and 'y' lengths differ
But if I do
foo <- function(x){qnorm(x,4,25)}
curve(foo,from=0,to=1)
it goes like a train.
Also
2010 May 07
1
Problems 'make'ing on Solaris 9.
Hi list! I'm trying to build Samba 3.4.7 with ADS support on Solaris 9
and experiencing a heap of problems (which seem to be common). First of my
system: Solaris 9 SPARC > uname -a
SunOS sunfire2 5.9 Generic_122300-08
sun4u sparc SUNW,Sun-Fire-V240 Solaris Using GCC 3.4.6 from sunfreeware
(with all noted dependancies installed) > gcc --version
gcc (GCC)
3.4.6
Copyright (C) 2006 Free
2005 Oct 19
1
can't start csh (scripts) (PR#8220)
Dear R developers,
after upgrading from R 2.1.1 to 2.2.0 I can't start csh (scripts) anymore.
While the following commands work fine
> system("tcsh -c pwd")
/hom1/users/gloeckler
> system("bash -c pwd")
/hom1/users/gloeckler
> system("ksh -c pwd")
/hom1/users/gloeckler
csh (in contrast to the shells used above) doesn't give any result:
2003 Sep 03
1
Last line in .Rprofile must have newline (PR#4056)
Full_Name: Henrik Bengtsson
Version: R v1.7.1
OS: WinXP Pro, Solaris 9
Submission from: (NULL) (130.235.2.229)
A colleague of mine who is new to R had problems setting up his .Rprofile and we
tracked it down to the following. On both WinXP and Solaris with Rv1.7.1 we
noticed that the *last* line in .Rprofile has to have a *newline* to be
evaluated. For instance, starting R with the following
2006 Apr 27
1
Symbol __f95_sign not found.
Our computing services people have recently reconfigured the Sun
compilers structure on our network, and I can no longer install, on
our Sun/Solaris machine, a certain package (spatstat) with which I am
heavily involved. (The same problem may well pertain to other
packages as well; I haven't yet experimented except with spatstat.)
Strictly speaking I can ***install*** it, but when I try
to
2004 Feb 10
1
make check in 1.8.1.
I just (finally!!!) got R version 1.8.1 to configure and build under
Solaris 9 (after much travail; there were funnies in my environment
variables that mucked things up, but that's another story).
Anyhow, when I ran ``make check'' I got an error right toward the
end. Looking in the directory ``tests'' I found that the error was
associated with the file reg-tests-3.R, and the