Displaying 20 results from an estimated 3000 matches similar to: "Problem with creating default NAMESPACE on FreeBSD"
2012 Jan 11
2
lubridate does not install on FreeBSD any more
With newest R devel
#sessionInfo()
R Under development (unstable) (2012-01-10 r58085)
Platform: amd64-portbld-freebsd10.0 (64-bit)
locale:
[1]
de_DE.ISO8859-15/de_DE.ISO8859-15/de_DE.ISO8859-15/C/de_DE.ISO8859-15/de_DE.ISO8859-15
attached base packages:
[1] stats graphics grDevices utils datasets methods base
I get the following error when I try to build and install lubridate from
2010 Oct 03
2
R-beta_2010-10-02_r53128 fails to compile on FreeBSD
I tried to compile R-beta_2010-10-02_r53128 on FreeBSD 9.0-CURRENT
(amd64) with gcc-4.4.5 and it fails:
-----------------------------------------
gcc -std=gnu99 -I../../src/extra/zlib -I../../src/extra/bzip2
-I../../src/extra/pcre -I../../src/extra -I. -I../../src/include
-I../../src/include -I/usr/local/include -DHAVE_CONFIG_H -g -O2 -c
sysutils.c -o sysutils.o
sysutils.c: In function
2019 Sep 08
1
Error: package or namespace load failed for ‘utils
Also, check the settings of R_HOME and/or R_LIBS.
Bill Dunlap
TIBCO Software
wdunlap tibco.com
On Sun, Sep 8, 2019 at 9:58 AM William Dunlap <wdunlap at tibco.com> wrote:
> Look at section 6.1 of the R Installation and Admin manual.
>
> 6.1 Default packages
>
> The set of packages loaded on startup is by default
>
> > getOption("defaultPackages")
> [1]
2019 Sep 08
6
Error: package or namespace load failed for ‘utils
Hi,
When starting an embedded R I encounter the following issue under certain
conditions:
```
Error: package or namespace load failed for ?utils? in if (.identC(class1,
class2) || .identC(class2, "ANY")) TRUE else {:
missing value where TRUE/FALSE needed
```
(more such errors for grDevices, graphics, and stats)
And in the end:
```
Warning messages:
1: package ?utils? in
2008 Aug 08
1
Lattice: regression lines within grouped xyplot panels
Dear community,
I am looking for a possibility to draw 'regression lines' instead of
'smooth' lines in grouped xyplots. The following code should give you a
small example of the data structure.
library(lattice)
data(Gcsemv, package = "mlmRev")
# Creates artificial grouping variable ...
Gcsemv$Groups <-
ifelse(as.numeric(as.character(Gcsemv$school))>65000,
2004 Mar 30
1
Problems with charsets and i18n
Hello list,
probably a known issue (but I haven't found a link yet):
I'm using 3.0.2a with 'unix charset = ISO8859-15' and get the following then a file with ticks is created:
- desired: "???????`'??"
- displayed: "???????`'??"
^^^
The euro sign is created correctly in a file name. The filename will be displayed in the filesystem
2011 May 02
1
Problems with Rterm 2.13.0 - but not RGui
Hi all,
I have just installed R 2.13.0 and I am experiencing problems with the terminal, but not the with the GUI interface.
I am Windows 7.
When running "R" or "Rterm" from a commandline I receive the following:
Warning message:
In normalizePath(path.expand(path), winslash, mustWork) :
path[3]="C:/Programmer/R/R-2.13.0/library": Adgang n?gtet
R version 2.13.0
2003 Jul 28
3
Recommended way to change defaultPackages under Windows
What is the recommended way to change the default set of packages that
are loaded at startup by R for Windows? I am writing vignettes for
the Devore6 package which my introductory engineering statistics
students will use and I would like to describe how the R environment
can be changed so that this package is loaded by default.
I understand from the R for Windows FAQ that one way would be to
2008 Apr 13
1
.Rprofile, date tagging history, loading packages
Dear R-Helpers,
I'm fiddling with my .Rprofile in Windows XP & R 2.7.0 Beta. I prefer to
manually save my workspace but automatically save my command history via
the .Rprofile. That is working fine once I found that "utils::" was
required before the loadhistory & savehistory functions. What I would
like to do is add a separator line with a date between the histories of
each
2007 Mar 28
1
Problem with adding packages to default start-up list
After reading the help files (?Startup) and using
RSiteSearch("defaultPackages"), I have been trying to add several packages
to my default startup list using the following code:
local({
old<-getOption("defaultPackages")
options(defaultPackages=c(old,"lattice","RODBC")
})
Subsequently, when I query the default list using:
2013 Jul 15
2
suppress startup messages from default packages
Hi all,
several packages print messages during loading. How do I avoid to see
them when the packages are in the defaultPackages?
Here is an example.
With this in ~/.Rprofile
,----[ ~/.Rprofile ]
| old <- getOption("defaultPackages")
| options(defaultPackages = c(old, "filehash"))
| rm(old)
`----
I get as last line when starting R:
,----
| filehash: Simple key-value
2008 Mar 27
1
snow, stopping cluster
Hello,
is there any function in the package snow to check for a really running
cluster?
The function checkCluster only checks the variable cl. And the variable
is still available after stopping the cluster!
( a simple solution would be deleting the cluster variable cl in the
function stopCluster)
> library(snow)
> cl <- makeCluster(5)
5 slaves are spawned successfully. 0
2010 Mar 14
3
R and R commander
Hi,
I am a student studying Biostatistics at University. We have been advised to install R and R commander. I managed to do this successfully, except I wasn't able to complete the final step - which would enable both R and R commander to launch when I open the R icon on my desktop.
However, I haven't been able to save it and for this to work.
The last instructions we were given are:
2010 Dec 17
2
installing package from source with Linux
Dear list,
this may not be related to R but rather to my OS, but I do not
understand the issue of compiling R packages deeply enough to figure out
the exact cause of the problem.
I am trying to install a R package from source as it is not yet
available under Cran (Rssa, downloaded here: https://github.com/asl/rssa).
Running
sudo R CMD INSTALL asl-rssa-6f458e4.tar.gz
from the console
2007 Mar 31
1
add confidence intervales to xyplot for ANCOVA and extracting info
Hi,
I would like to add confidence intervales to an ANCOVA with 2
covariates when using xyplot.
What would be a good way of accomplishing this?
--8<---------------cut here---------------start------------->8---
rm(list = ls(all = TRUE))
rm(list = c(ls()))
library(lattice)
## 1. generate data
random <- rnorm(200)
y <- abs(random)
x1.cont <- abs(random)
x2.fac <-
2011 Mar 01
2
can't open Cairo device
Dear list,
in R under wheezy the following error occurs:
> library(cairoDevice)
> Cairo()
Error in Cairo() : Graphics API version mismatch
It seems to be Debian-specific, as I tried the same under OpenSUSE 11.3
and it worked.
I tried installing cairoDevice via `apt-get install r-cran-cairodevice'
and with `install.packages("cairoDevice")' in R (without any
2012 Aug 14
0
as.numeric and as.character with locale using comma as separator
Dear all,
summary:
My LC_NUMERIC is changed from C to de_DE by library (qtbase).
[which shouldn't happen according to the warning when setting it back
manually].
I posted an issue at their github repository, but maybe the behaviour is
a bit more of general interest.
However, if LC_NUMERIC is changed, as.character () uses the decimal
separator that belongs to LC_NUMERIC (and not options
2008 Feb 27
1
d_fontdb.d, g_her_glyph.d
Dear Developers,
I'm updating my R installation via svn (currently: Revision 44626). For
some time now (sorry don't know the exact revision number) make for R
devel yields the following error
make[4]: *** Keine Regel vorhanden, um das Target
?../../../src/include/R_ext/GraphicsBase.h?,
ben?tigt von ?g_fontdb.o?, zu erstellen. Schluss.
(translation: no rule to make target ...
2013 Mar 04
1
R broken after upgrade to 2.15.3 (Ubuntu 12.10, 64bit)
Hi,
I am using R on Ubuntu 12.10 (64bit). This morning, Ubuntu's software
updater automatically installed updates to R's base system (version
2.15.3; via the CRAN PPA). Now R does not work anymore. Here is what I
get when I simply enter "R" on the shell prompt:
bodenhof FUKUOKA~>R
cannot find system Renviron
Error : .onLoad failed in loadNamespace() for 'utils',
2005 Mar 09
1
delay of warning for things in .Rprofile
Hi all,
I was playing with R-devel 2005-03-08 on winXP Pro (installed from Duncan's
installer). My .Rprofile contains:
options(defaultPackages=c(getOption("defaultPackages"), "mypkg"),
chmhelp=TRUE)
but "mypkg" has not yet been installed in the library/ directory of this
installation. When Rgui starts, I do not get any error or warning, but upon