search for: izbi

Displaying 5 results from an estimated 5 matches for "izbi".

Did you mean: ibi
2004 Jun 10
3
Package installation
...'m very new to R. I have installed R 1.9.0 on Linux (Fedora). Now I got an self-made package comprising R functions as well as C-Code which are used in several R functions. I installed the package without any error (see install log below). Then, I checked in /usr/lib/R/library if the package izbi exists and it exists. But whenever I try to load the library on the command line I got the following error. > library(izbi) Error in .find.package(package, lib.loc, verbose = verbose) : Object "izbi" not found Error in library(izbi) : .First.lib failed Unfortunately, the...
2004 Jun 22
2
function not in load table
...ble(alpha2), as.character(MINMAXFUN), WYdist=double(nres), as.integer(nres), test.value=double(grpnum), p.value=double(grpnum)) My .First.lib.R is as follows: .First.lib <- function(libname, pkgname) { library.dynam("izbi", package = pkgname, lib.loc = libname) data(COLS, package=pkgname) data(ROWS, package=pkgname) if (exists(".Dyn.libs")) remove(".Dyn.libs") if (interactive() && getenv("DISPLAY") != "") x11() } I read something about R_CMethodDef in...
2002 Nov 14
1
evaluating density objects
An object of class `density' has `x' and `y' components, which are what you need to do the plot. Just bind them into a matrix and use write() to write to a file. HTH, Andy -----Original Message----- From: Hinnerk Boriss [mailto:boriss at izbi.uni-leipzig.de] Sent: Thursday, November 14, 2002 7:12 AM To: R-help at stat.math.ethz.ch Subject: [R] evaluating density objects Hi! Is there a way to evaluate "density" objects other than with plot, so that I can write data points to a file and plot them with gnuplot? Can anyone help...
2004 Nov 26
2
sorting a data.frame using a vector
Hi all, I'm looking for an efficient solution (speed and memory) for the following problem: Given - a data.frame x containing numbers of type double with nrow(x)>ncol(x) and unique row lables and - a character vector y containing a sorted order labels Now, I'd like to sort the rows of the data.frame x w.r.t. the order of labels in y. example: x <- data.frame(c(1:4),c(5:8))
2002 Nov 12
4
R: Error in plot.new() : axis style "d" not implemented
Hi there! Both on windows and Solaris platforms I run into troubles when trying to draw two plots on top of each other. Here a short code example: > x1 <- c(2,3,4,5,6,7,8) > y1 <- sin(x1) > x2 <- c(1,2,3,4,5,6,7,8,9,10) > y2 <- cos(x2) > d1 <- cbind(x1,y1) > d2 <- cbind(x2,y2) > plot(d1) > par(new=T, xaxs="d") > plot(d2) Error in plot.new()