Displaying 20 results from an estimated 20000 matches similar to: "Newbie: listing workgroups and hosts"
2006 May 11
1
Boxplot and range of x-axis
Hello there,
could somebody help me with this: I have to create a lot of boxplots but
with same range concerning the x-axis.
For example I have following data:
liste1 <- c(3,4,5,3,3,4,4)
liste2 <- c(1,2,3,4,6)
png(file = "liste1.png")
boxplot(liste1)
png(file = "liste2.png")
boxplot(liste2)
q()
Works perfectly, but what I need would be that both boxplots have their
2006 Feb 14
2
Simple network diagram
Hello,
I'm trying to create a simple network diagram like that on
http://www.pauck.de/marco/photo/infrared/comparison_of_films/diagram3.gif.
Unfortunately I've not yet found any function that could do this.
I think this should not be a difficult task since I only need two
vectors and perhaps the names of the dimensions as data source.
Could somebody help me please?
Greetings,
2007 Sep 20
2
referencing packages?
Hi
I know how to referenc R in a scientific paper - but is there a
standardised way to reference packages?
Thanks
Rainer
--
NEW EMAIL ADDRESS AND ADDRESS:
Rainer.Krug at uct.ac.za
RKrug at sun.ac.za WILL BE DISCONTINUED END OF MARCH
Rainer M. Krug, Dipl. Phys. (Germany), MSc Conservation
Biology (UCT)
Plant Conservation Unit
Department of Botany
University of Cape Town
Rondebosch 7701
2007 Mar 19
4
Newbie Problem: need Windows Printer Driver?
Hi friends
I just started using wine on my Linux-machine. Mostly because I want to
switch finally from Windows to Linux on my computer at work. There is just
one single application I want to "take with me" and that is "GraphPad
Prism" (http://www.graphpad.com/prism/Prism.htm).
So I installed wine0.9.20 on my Mandriva2007. Then I used wine to install
Prism in its most recent
2007 Oct 01
4
Concatenating one character vector into one string
Hi
I am sure this is simple - but how can I convert one charecter vector
into one string?
example:
x <- c("This ", "is ", "one ", "sentence.")
should become
"This is one entence"
Thanks
Rainer
--
NEW EMAIL ADDRESS AND ADDRESS:
Rainer.Krug at uct.ac.za
RKrug at sun.ac.za WILL BE DISCONTINUED END OF MARCH
Rainer M. Krug, Dipl. Phys.
2007 May 28
1
Where to find "nprq"?
Hi
I am trying to install the package "pheno", but it needs the package
"nprq" by Roger Koenker et al. which I can I find this package? It does
not seem to be on CRAN and googling also doesn't give me an URL - is it
still somewhere available?
Thanks,
Rainer
--
NEW EMAIL ADDRESS AND ADDRESS:
Rainer.Krug at uct.ac.za
RKrug at sun.ac.za WILL BE DISCONTINUED END OF
2020 Sep 22
3
R > 4.0.0 on Debian 9 Stretch?
Hi Dirk,
Thanks for the explamnayion - Debian is running in a VM (and nothing really installed on it) , and I think the easiest is for me just to install Debian 10 and to use that one.
Thanks a lot,
Rainer
> On 22 Sep 2020, at 15:14, Dirk Eddelbuettel <edd at debian.org> wrote:
>
>
> On 22 September 2020 at 14:49, Rainer M Krug wrote:
> | I know this is likely
2006 Sep 22
1
Update to Dillo browser question
Hi
I asked about if there is any way of opening URLs from the help browser
in the same window of the same dillo browser - here is the answer.
Just to reiterate: dillo is for me the perfect browser for the help of R
when you use ?...
Rainer
-------- Original Message --------
Subject: Re: [Dillo-dev] Opening new URL in same instance and -s option
Date: Thu, 21 Sep 2006 21:31:57 -0400
From:
2006 Nov 06
1
Duplicate header extension keywords
I'm running dovecot supporting imaps and pop3s in a small home-office
environment on a Linux-box, kernel 2.4.33, with postfix-2.3.4,
amavisd-new and spamassassin.
I use Thunderbird as mail-client on Windows XP.
ever since upgrading to RC10 I every now and then find these error
messages in doveocot.log:
Error: IMAP(rainer): Corrupted index file
2005 Oct 10
3
Vectorizing loop
Hi
I have the following loop and would like to vectorize it. Any ideas if
it is possible?
Thanks,
Rainer
Tha Loop:
for (i in 2:Result$NoSims)
{
ppp <- runifpoint(Result$NoPlants)
K <- Kest(ppp)
Result$LSim[i,] <- sqrt(K$iso / pi) - K$r
CM <- (Result$LSim[i,] * Result$LSim[i,]) / abs(K$r[2] - K$r[1])
Result$SigCM[i] <- sum(CM, na.rm=TRUE)
print(i)
flush.console()
}
2011 Oct 05
2
"unload" a library while testing?
Hi
I am testing a package, and after I make changes, I have to close R and open
R again to load the new version (same version number) of the package I am
working on. So my question:
is there a function which removes a package, i.e
library(myPackage)
> Package is loaded
unlibrary(myPackage)
> package is not loaded any more
Thanks,
Rainer
--
Rainer M. Krug, PhD (Conservation Ecology,
2020 Sep 22
2
R > 4.0.0 on Debian 9 Stretch?
Hi
I know this is likely documented somewhere, but I can?t find it. How can I install R > 4.0.0 on Debian 9 Stretch?
Thanks a lot,
Rainer
--
Rainer M. Krug, PhD (Conservation Ecology, SUN), MSc (Conservation Biology, UCT), Dipl. Phys. (Germany)
Orcid ID: 0000-0002-7490-0066
Department of Evolutionary Biology and Environmental Studies
University of Z?rich
Office Y34-J-74
2006 Sep 20
5
Beginners manual for emacs and ess
Hi
I heard so much about Emacs and ESS that I decided to try it out - but I
am stuck at the beginning.
Is there anywhere a beginners manual for Emacs & ESS to be used with R?
even M-x S tells me it can't start S-Plus - obviously - but I want it to
start R...
Any help welcome (otherwise I will be stuck with Eclipse and R)
Rainer
--
Rainer M. Krug, Dipl. Phys. (Germany), MSc
2006 Sep 06
4
problem with putting objects in list
Hi
I use the following code and it stores the results of density() in the
list dr:
dens <- function(run) { density( positions$X[positions$run==run], bw=3,
cut=-2 ) }
dr <- lapply(1:5, dens)
but the results are stored in dr[[i]] and not dr[i], i.e. plot(dr[[1]])
works, but plot([1]) doesn't.
Is there any way that I can store them in dr[i]?
Thanks a lot,
Rainer
--
Rainer M. Krug,
2006 Dec 01
2
specify point shape for ggplot (equivalent to pch)?
Hi
is it possible to specify the shape of the point to be used in ggplot
(as with pch in plot)? I couldn't find anything in the help.
Thanks
Rainer
--
Rainer M. Krug, Dipl. Phys. (Germany), MSc Conservation
Biology (UCT)
Department of Conservation Ecology and Entomology
University of Stellenbosch
Matieland 7602
South Africa
Tel: +27 - (0)72 808 2975 (w)
Fax: +27 - (0)86 516 2782
Fax:
2009 Oct 30
2
Ubuntu packages compiled with 2.9
Hi
I upgraded to R 2.10.0, and I encounter a problem with some packages on R,
installed via apt-get..
They are still compiled by 2.9 and give me an warning when I load the
packages. Will these packages be recompiled with R 2.10, or should I rather
switch to self-compiling?
Cheers,
Rainer
--
Rainer M. Krug, PhD (Conservation Ecology, SUN), MSc (Conservation Biology,
UCT), Dipl. Phys.
2011 Jul 26
1
Comparing two pdf resulting from density() and identify where significantly smaller or larger?
Hi
this might be a little bit off topic, but here it goes: lets assume I have
the following:
set.seed(13)
dat1 <- rnorm(2000, mean=10, sd=10)
dat2 <- rnorm(100, mean=10, sd=20)
d.all <- density(dat, n=1024)
d.co <- density(x[[v]], , from=min(d.all$x), to=max(d.all$x),
n=1024)
d.diff <- list(
x = d.all$x,
2006 Jan 09
2
Problem with WineTools - unexpected identifier
Hi
I try to run WineTools, It starts fine, but when I click any button
(e.g. Basic Setup), it gives me the following message and returns to the
main menu:
------------------------
ckrug@consecol-ckrug:~> wt
detecting Wine version... done.
Drive C: is /home/ckrug/.wine/drive_c
Wine 0.9.3
wine is executed as wine
Parameters are --noexit
Browser is /usr/bin/firefox.
WINEVER is
2006 Mar 23
4
Create graphs from text console
Hi
I am using R 2.2.1 under Linux (SuSE 10) and would like to know if it is
possible to create graphs, i.e.
jpeg(filename=fn)
try( coplot( mor$I_Morisita ~ mor$Year | mor$RunStr, show.given=FALSE) )
dev.off()
from a text console?
It gives me an error message on the jpeg() command:
Error in X11(..snip..) unable to start device jpeg
In addition: warning message:
unable to open connection to
2005 Oct 26
1
install.packages under SuSE 10 behind proxy, R 2.2.0 from source
Hi
I installed R 2.2.0 from source and want to use install.packages but it
doesn't work.
http_proxy is set to http://proxy.sun.ac.za:3128
but it still can't connect to the repository.
The mirror is available, I can connect to it via the internet.
Any help welcome,
Rainer
--
NEW TELEPHONE NUMBER
Tel: +27 - (0)72 808 2975 (w)
Rainer M. Krug, Dipl. Phys. (Germany), MSc