similar to: problem loading packages (PR#559)

Displaying 20 results from an estimated 8000 matches similar to: "problem loading packages (PR#559)"

2001 Dec 10
1
boxplot labels incorrect when horizontal = TRUE (PR#1207)
#Example: y <- rnorm(10) group <- gl(2,5) plot(y ~ group, horizontal = TRUE) # BUG: default xlab & ylab interchanged plot(y ~ group, horizontal = FALSE) # OK: supplies correct default xlab & ylab # Using boxplot() instead of plot() omits default axis labels altogether # (not sure if this is intentional): boxplot(y ~ group, horizontal = FALSE) # no default axis labels supplied
2000 Jul 10
3
help page typos (PR#599)
A couple of help page typos that I came across: 1. help(sample) Arguments: x: Either a (numeric, complex, character or logical) vector of more than one elements from which to choose, or a positive ^ [element] 2. help(delay) Description: `delay' creates a promise to evaluate the given expression in the
2001 Mar 29
1
Detaching "ctest"
Hi Everyone, We have just upgraded to R-1.2.1, and I note, in contrast to R-1.1.1, that ctest is now loaded automatically. The mechanism for this is to create a .First function in base: .First <- function() { require("ctest", quietly=TRUE) } Now I don't want ctest, but I find that simply putting if (length(grep("ctest", search()))) detach(package:ctest) into
2000 Mar 08
3
Error loading ctest
Has anyone noticed this behavior: > library(ctest) Error in dyn.load(x, as.logical(local), as.logical(now)) : unable to load shared library "J: \STATS\RW1000/library/ctest/libs/ctest.dll": LoadLibrary failure > library(ctest) > version _ platform Windows arch x86 os Win32 system x86, Win32 status major 1 minor 0.0 year 2000 month
2002 Apr 30
1
Undefined symbols in loading tcltk (PR#1499)
Non of these errors occured in earliers versions of R. > library(tcltk) /usr/lib/dld.sl: Unresolved symbol: Tcl_GetVar2Ex (code) from /opt_local/opt/R/lib/R/library/tcltk/libs/tcltk.sl /usr/lib/dld.sl: Unresolved symbol: Tcl_GetString (code) from /opt_local/opt/R/lib/R/library/tcltk/libs/tcltk.sl /usr/lib/dld.sl: Unresolved symbol: Tcl_SetVar2Ex (code) from
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
2002 Jan 30
5
1.4.1 R CMD check broken?
I am not sure if this is already known. I checked BUGS and found some references to similar behavior when R_HOME is set? Here is what I get: (1) Fresh build of 1.4.1 under Linux/RH-7.2. All tests pass. > R CMD check ctest * checking for working latex ... OK * using log directory `/home/andyj/stat/R-1.4.1/library/ctest.Rcheck' Installing *source* package `ctest'
2003 Apr 22
2
Handling of upper/lowercase in package names (PR#2816)
Hi, This is (presumably?) a bug in R 1.7.0 under Windows. I have not tested it on other systems. Attachment of packages is case sensitive but not library(), resulting in multiple loadings of the same package if the library name is spelled differently. The following example loads the `tools' package, once as `tools' and once as `Tools'. This behavior is the same with all packages and
2003 Mar 15
3
round() seems inconsistent when rounding 5s
It may be my lack of unerstanding, but round() seems to me to give inconsistent results when rounding 5s as in the following examples? > round(1.45, 1) [1] 1.4 # OK > round(2.45, 1) [1] 2.5 # shouldn't this be 2.4? > round(1.05, 1) [1] 1.1 # 1.0 ? and signif(): > signif(2.445, 3) [1] 2.44 # OK > signif(3.445, 3) [1]
2004 Sep 29
1
Problem with _new_ if class "lm" in object representation.
Hi! Consider this code. setClass("Ctest" ,representation( test="character" ,bla="character" ,mod="lm" ) ) new("Ctest",test="bla") #This produces an error. #Error in validObject(.Object) : Invalid "Ctest" object: Invalid object for slot "mod" in class "Ctest": got class
2001 Nov 23
1
zip error, missing file
4. Noticed this error go by in the r-devel build in Windows 95: F:/R/TOOLS/BIN/MAKE.EXE -C ./help RHOME=F:/R/R-devel PKGDIR=F:/R/R-devel/src/lib rary RLIB=F:/R/R-devel/library ziponlyhelp-base MAKE.EXE[2]: Entering directory `F:/R/R-devel/src/gnuwin32/help' zip -jqmX help/Rhelp help/* -x help/AnIndex 2> nul MAKE.EXE[3]: [zipup] Error 12 (ignored) My guess is that it's a problem with
1999 Nov 10
2
R.bug.report (PR#315)
Again I would like to express my deepest appreciation to all those working so selflessly on the development of R for us all to use it freely (and it is such a joy to use!) Rashid Nassar == Possible bug: 1. boxplot() This is an old behavior that I had reported before, but as it is still there, it may not ba a bug (although it looks like one to me). "qfcut" is numeric, "st"
2000 Jun 12
2
ctest not works (PR#567)
I try load ctest, and don't have sucess > library(ctest) Error in dyn.load(x, as.logical(local), as.logical(now)) : unable to load shared library "/usr/local/lib/R/library/ctest/libs/ctest.so": /usr/local/lib/R/library/ctest/libs/ctest.so: undefined symbol: ÝfÔ What I must to do I will waiting your answer George Diniz
2000 Jul 09
1
minor typos in help pages (PR#598)
Dear R Team, A few monor typos in help pages that I noticed. Thank you very much. Rashid Nassar 1. help(gl) Examples: # First control, then treatment: gl(2,8, label=c("Ctnrl","Treat")) ^^^^ I assume "Cntrl" is meant. ========================================== 2. help(pmatch) Details: The behaviour
2002 Jan 19
1
Build R-patched from Source
Hi, If I want to build R-patched from source (on Windows), do I need to edit Makefile and/or MkRules at all? I have followed all instructions in the INSTALL file (under R-patched/src/gnuwin32/), as well as downloaded all the files from http://www.stats.ox.ac.uk/pub/Rtools/ . My PATH variable has been modified accordingly. Now, with the only change to MkRules I made was to modify the Tcl/Tk
2004 Oct 22
0
library.dynam() & .dynLibs() do not work as documented (PR#7304)
nor in any sensible way we could document. In R 2.0.0 (and current R-patched and R-devel): > X11() > library.dynam() Filename Dynamic.Lookup base base FALSE stats /usr/local/lib/R/library/stats/libs/stats.so TRUE methods /usr/local/lib/R/library/methods/libs/methods.so
2003 Dec 10
3
expressing functions
# Why does expressing one function require(ctest) t.test # return only function (x, ...) UseMethod("t.test") <environment: namespace:ctest> # but expressing another function shapiro.test # returns more complete code? function (x) { DNAME <- deparse(substitute(x)) x <- sort(x[complete.cases(x)]) n <- length(x) if (n < 3 || n > 5000)
2000 Jun 26
2
Chi-square tests in R 1.1.0
Hi, I'm running R 1.1.0 for Windows NT on a Dell Latitude laptop with 128 MB of RAM. In the previous version of R (1010) there was the ctest library and a few other functions to do a variety of chi-square tests in R. Have those been deleted in the current version (1.1), or do they just go by a different name in a different library? I originally downloaded (R 1.1) from Prof. Ripley's
1999 Dec 26
3
coredump with plot(x,y,pch="+",cex=2.2) (PR#389)
Core dumped when plot() is used with pch="c" & cex > 2, e.g., plot(1,1, pch="+", cex=2.2) Thank you and best wishes for 2000! Rashid Nassar --please do not edit the information below-- Version: platform = i586-unknown-linux arch = i586 os = linux system = i586, linux status = major = 0 minor = 90.1 year = 1999 month = December day = 15 language = R
2002 Nov 21
1
tkclipboard.append(...) and TCL_LIBRARY not set
Dear R-Help, Searching for a function that will copy the value of an R object to the windows clipboard led me to "tkclipboard.append(...)". Will this function do what I seek? Or if not, does anyone know of such an R function? If tkclipboard.append(...) is what I need, please explain how I can set TCL_LIBRARY. With R 1.6 on W98 I got the following R dialog. (If it is relevant,