search for: herwig

Displaying 18 results from an estimated 18 matches for "herwig".

2009 Mar 31
2
convert table to list
...on - but I was not able to solve it so far. I would like to convert the following table: A B C D x 10 20 30 40 y 11 21 31 41 z 12 32 42 to a list with three columns like: A x 10 A y 11 A z 12 B x 20 . . . Any hints how do do this in R would be very much apprechiated. cheers, Herwig -- View this message in context: http://www.nabble.com/convert-table-to-list-tp22810143p22810143.html Sent from the R help mailing list archive at Nabble.com.
2009 Mar 21
1
bargraph.CI change se for sd
...ction from the default (se) to (sd). The help file says ci.fun= function(x) c(fun(x)-se(x), fun(x)+se(x)) Is there a simple way of telling the function what (x) precisely is - I already define in in the of the bargraph.CI function and assume that is should be able to use that information. cheers, Herwig -- View this message in context: http://www.nabble.com/bargraph.CI-change-se-for-sd-tp22633770p22633770.html Sent from the R help mailing list archive at Nabble.com.
2008 Nov 18
1
Configuring Sangoma BRI with zaptel?
...rom pkg-voip) wanpipe 3.3.14 (newest beta) Same config (without wanpipe of course) works well with a digium TE220 (PCIe 2x PRI). Any hints would be greatly appreciated as I'm banging my head about this for some days now ;-) Claus -- CHECON EDV-Consulting und Redaktion Claus Herwig * Barer Stra?e 70 * 80799 M?nchen +49 89 27826981 * Fax 27826982 * c.herwig at checon.de
2001 Apr 28
4
wine on mandrake 8.0
I am using Mandrake 8.0 (on /dev/hda5) with Windows 2000 (on /dev/hda2) mounted as /mnt/win2000 and the windows swap file (on /dev/hdb12) mounted as /mnt/k. I installed wine-20010305-1.i386.rpm and then ran winesetup. When it got to Autodetect I got following message: Unable to detect any users on WinNT/2k partition mounted on /mnt/k. This means that this windows installation is probably
2005 Nov 22
3
R: pp plot
hi all i would like to know if anyone has a reference on how one would place the "bands" on the pp plot. i want to test whether or not a certain data set comes from a particular distribution (not normal). i've already plotted F(X(j)) vs j/(n+1) where F(x) is the cum dist function, X(j) is the j'th order statistic and n is the sample size. a goole search gave arb references
2006 Dec 11
3
rsync /somedir work@backups::somearchive/ gets stuck in huge maildirs, rsync /somedir root@backups:/some/path/ works
...ailable bug tracking information. please excuse me if my problem report should not meet your standards, but i want to direct your attention to the following: http://koffein.org/av/rsync-bugreport/ problem report for rsync 2.6.9 on linux/IA32, 09 Dec 2006 Herwig Wittmann - Initials At Geizhals .at ******************************************************* "chrooted rsync gets stuck in huge maildirs, retval 12" ******************************************************* (i'm not sure wheter an chroot() mechanism is invok...
2009 Jun 17
0
Re: [samba-user] Re: 2 copies of smbd running?
Am Mittwoch, 17. Juni 2009 schrieb Herwig Bauernfeind: > Chuck McKinnis schrieb: > >>> Is this normal? > >>> > >> Absolutely. Basically you have one parent smbd.exe daemon and one for > >> each user attached to the server. > >> > >> In addition there are usually 2 ins...
2005 Mar 24
0
question/problem with samba 3.0.13 PDC on suse 8.2
...= yes writeable = yes public = yes [office] comment = office path =/usr/awg.daten/office browseable = yes writeable = yes public = yes [presse] comment = presse path =/usr/awg.daten/presse browseable = yes writeable = yes public = yes [herwig] comment = herwig path = /home/herwig browseable = yes writeable = yes public = no [andi] comment = andi path = /home/andi browseable = yes writeable = yes public = no [christian] comment = christian path = /home/christian browsea...
2009 Jan 05
1
Error : unused arguments in pairs()
...ex.cor <- 0.8/strwidth(txt) + text(0.5, 0.5, txt, cex = cex.cor * r) + } > pairs(pep[9:18],cex.labels = 0.6, pch = 21, bg = c("red", "blue", "green", > "yellow","brown")[unclass(pep$taxonomic.position)], lower.panel=panel.cor) thanks, Herwig -- View this message in context: http://www.nabble.com/Error-%3A-unused-arguments-in---pairs%28%29-tp21283398p21283398.html Sent from the R help mailing list archive at Nabble.com.
2009 Jan 31
1
display p-values and significance levels
...the significance of each correlation next to the correlation coefficient. Furthermore I would like to make a t.test between the species "setosa" and "versicolor" for Sepal.length, ..width..... and so on and display it int the horizontal panel I would appreciate any help, Herwig here the code I've got at the moment: panel.cor <- function(x, y, digits=2, prefix="", splitvar, col.cor, ...) { usr <- par("usr"); on.exit(par(usr)) par(usr = c(0, 1, 0, 1)) r <- abs(cor(x, y)) if(!missing(splitvar)) { r <- c(r, abs(sapply(l...
2013 Aug 08
1
syslinux 5.x, 6.x gpxlinux.0 forces reboot on some devices
On some devices (ThinkPad T60 - but not T61, kvm images, Intel board D865GBF) gpxelinux.0 is the last file downloaded from tftp server then the device reboots. This does not happen with SYSLINUX v4.06. Any ideas. Herwig
2005 Dec 16
2
dendrogram branches with different lty
Dear r-list, I am trying to visually seperate the two main clusters of a dendrogram. The idea is to use: 'edgePar=list(lty=3)' for 'dend1[[1]]' and 'edgePar=list(lty=1)' for 'dend1[[2]]' I have not found a way to solve this. Any suggestions? Patrick hc <- hclust(dist(USArrests), "ave") (dend1 <- as.dendrogram(hc)) par(mfrow=c(2,2)) plot(dend1)
2005 Dec 12
1
dendrogram: how to obtain leaf height
Dear All, How can the height of a leaf be extracted from a dendrogram? Sure, I can print it, but I am not able to, say, store it in an object. I think I understand that the height is a property of the split, not the leaf itself, but the printing functions display a "height" or "h" (which changes with "hang") and that is what I want. Obviously, the info is there
2013 Jan 08
4
SysLinux 5.0 - Problems booting via PXE
Hello SysLinux Team, I have recently installed version 5.0of SysLinuxwhat may be I should not have done so. Now my problem is, that everytime I start via PXE (gpxe) I only get the boot: prompt and not the menu as expected (all was working fine with previous versions incl 4.06) In the server log I can see atftpd serving some files to the workstation but not as before where it tried to find the
2009 Jan 31
6
Quiet 24 port POE gig switch
A little off topic but.... I need to put a 24 port Gig PoE switch into a small office - no computer room / rack etc. All CAT5 terminates near the owners desk (smart huh?). I want to put a PoE switch in place, with 24 ports and Gig speed. Everyone I've researched so far is LOUD... Anyone know of a quiet one? Thanks -------------- next part -------------- An HTML attachment
2004 Jun 16
4
non-linear binning? power-law in R
First, thanks to everyone who helped me get to grips with R in (x)emacs (I get confused easily). Special thanks to Stephen Eglen for continued support. My question is about non-linear binning, or density functions over distributions governed by a power law ... y ~ mu*x**lambda # In one of its forms # (can't find Pareto in the online help) Looking at the following
2006 Jun 19
3
MacOS X - R crashes & import problem (PR#9005)
Full_Name: Oliver Balmer Version: 2.3.1 OS: Mac OS 10.4.6 Submission from: (NULL) (157.161.74.75) when working in the editor R crashes regularly. no other program ever crashes. one quite reliable way to crash it is by marking some code and then pressing the "find" command. I have had this problem with other R versions before. I have the feeling the editor is the problem. Another
2011 Jan 11
5
Connecting an iMac to os/2
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Hello, I have an iMac v10.6. I'd like to get it to connect to an old os/2 server, v4.5 fp3. Using smbutils on the iMac: $ smbutil -v view //sma-server1.sma.com smbutil: server connection failed: RPC struct is bad Can anyone suggest what changes may be made that will correct this error? Is it even possible? - -- James Moe moe dot james at