search for: hippo

Displaying 11 results from an estimated 11 matches for "hippo".

Did you mean: hipp
2004 May 19
7
Help with hclust() and plot()
Hi When I use plot(hclust(dist..)...)...) etc to create a dendrogram of a hierarchial cluster analysis, I end up with a vertical tree. What do I need to do to get a horizontal tree? Also, my users are used to seeing trees who's leaves all "end" at the same place (eg. Like in minitab). Is this possible in R? Thanks Mick Michael Watson Head of Informatics Institute for Animal
2009 Feb 01
0
setting a large value of --max-vsize
Hello, I'm using a 64bit Linux with 16GB of RAM. I'd like to limit the memory that the R process can use so I'm trying to use --max-vsize switch. However, it is seems that I can't enforce a limit above 2GB. shlomo at hippo:~$ uname -a Linux hippo 2.6.24-16-generic #1 SMP Thu Apr 10 12:47:45 UTC 2008 x86_64 GNU/Linux This WORKS: -------------------- shlomo at hippo:~$ R --max-vsize=250M -e "mem.limits()" R version 2.6.2 (2008-02-08) Copyright (C) 2008 The R Foundation for Statistical Computing ISBN 3-900...
2004 Mar 26
1
linker errors on ia64: open.o: @gprel relocation against dynamic symbol f__buflen
...R 1.8.1 and also the latest beta R-1.9.0beta_2004-03-22.tar.gz on an ia64 architecture. When it comes to linking the Lapack library, the following error occurs six times: /usr/bin/ld: open.o: @gprel relocation against dynamic symbol f__buflen Here is some diagnostic information. uname -a Linux hippo 2.4.21-sgi230rp03111013_10029 #1 SMP Mon Nov 10 13:25:42 PST 2003 ia64 unknown gcc --version 2.96 g77 --version GNU Fortran 0.5.26 20000731 (Red Hat Linux 7.2 2.96-118.7.2) I can produce the same error messages with the following simpler steps: cat >tst.f <<EOF SUBROUTINE DLAMC...
2001 Nov 15
3
partition magic
Does anyone know if i can resize an ext3 partition with parition magic ? Although ext3 is backwards compatible with ext2, that doesn't mean it is able to work in partition magic ? right ? need to resize my harddrive without installing over. too much to setup from start. i rather buy the software to repartition than to reinstall.
2017 Nov 16
2
Can't update
Hi, I can't do update: yum update Traceback (most recent call last): File "/usr/bin/yum", line 29, in <module> yummain.user_main(sys.argv[1:], exit_code=True) File "/usr/share/yum-cli/yummain.py", line 298, in user_main errcode = main(args) File "/usr/share/yum-cli/yummain.py", line 110, in main base = cli.YumBaseCli() File
2009 Apr 07
1
v1.3 plugin locations
It's getting more and more annoying to have separate plugin directories for lda, pop3 and imap. Currently all the plugins are installed into $lib/dovecot/ and then symlinked to the lda, pop3, imap directories. The original reason was that v0.99 just loaded everything in those directories since there was no mail_plugins setting. But then there are things like expire-tool and convert-tool (and
2017 Nov 16
2
Can't update
...rch python-markupsafe-0.9.2-4.el6.x86_64 python-urlgrabber-3.9.1-11.el6.noarch python-suds-0.4.1-3.el6.noarch python-psutil-0.6.1-1.el6.x86_64 libxslt-python-1.1.26-2.el6_3.1.x86_64 python-jinja2-2.2.1-2.el6_5.x86_64 gnome-python2-gnome-2.28.0-3.el6.x86_64 python-passlib-1.5.3-1.el6.noarch hippo-canvas-python-0.3.0-6.el6.x86_64 python-beaker-1.3.1-7.el6.noarch python-ethtool-0.6-5.el6.x86_64 python-nose-0.10.4-3.1.el6.noarch python-lxml-2.2.3-1.1.el6.x86_64 python-vobject-0.8.1c-5.el6.noarch python-yaml-3.09-3.el6.rf.x86_64 python-libs-2.6.6-64.el6.x86_64 python-mako-0.3.4-1.el6.no...
2015 Sep 22
37
[Bug 92077] New: nouveau graphics freeze when using KDE Plasma 5; PGR engine fault
https://bugs.freedesktop.org/show_bug.cgi?id=92077 Bug ID: 92077 Summary: nouveau graphics freeze when using KDE Plasma 5; PGR engine fault Product: Mesa Version: 10.3 Hardware: Other OS: All Status: NEW Severity: normal Priority: medium Component:
2008 Mar 08
32
Mac OS X or Windows?
Hey, I know it''s a basic question and I do not want a discussion about which one is the best in general, I only want to know which OS you''d recomment for programing in Rails and to do webdesign. Maybe you can also tel me why you think so? Regards, zok --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups
2003 Dec 01
0
No subject
...shouldn't fight each other for control of the domain. I'm at my rope's end with the virtuald setup, so I would be happy to work with anyone who could help me through this in any way. ~!kenny Return-Path: <oio_oiuu_ww_ll@yandex.ru> Delivered-To: samba@samba.org Received: from MB (hippo.bbaw.de [194.95.188.1]) by lists.samba.org (Postfix) with SMTP id 3EF7E425F for <samba@samba.org>; Sun, 9 Sep 2001 01:40:58 -0700 (PDT) Message-ID: <6768200190984138991@yandex.ru> X-EM-Version: 5, 0, 0, 21 X-EM-Registration: #01B0530810E603002D00 From: "MailBase" <oio_...
2002 Dec 01
1
SYSLINUX COM32 example in assembly (NASM)
Hello Where can I get example in assembly, using COM32 API ? I'm trying to make simple "Hello World" using COM32, but this code does not works 8-( org 0x101000 ; this number I get from comboot.doc _start: mov ecx,msge-msg mov ebx,msg mov ah,0x02 .L: mov dl, byte [ebx] inc ebx int 0x21 loop .L .Z: jmp .Z ; \infty loop msg: db "Hello World !" msge: