search for: hippos

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

Did you mean: hippo
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
2004 Mar 26
1
linker errors on ia64: open.o: @gprel relocation against dynamic symbol f__buflen
hello, I just failed to compile 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
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
Thank you for your response. # python -V Python 2.6.6 # rpm -qa|grep python gnome-python2-bonobo-2.28.0-3.el6.x86_64 gnome-python2-extras-2.25.3-20.el6.x86_64 python-setuptools-0.6.10-3.el6.noarch python-unittest2-0.5.1-3.el6.noarch gnome-python2-gconf-2.28.0-3.el6.x86_64 python-psycopg2-2.6-1.rhel6.x86_64 python-feedparser-5.1.2-2.el6.noarch python-iwlib-0.1-1.2.el6.x86_64
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
network. I did read somewhere on the web (several years ago) of a guy who managed to boot windows from the net. With the start of Win 98/ME/ etc.etc it's not posible anymore. I currently use PXE to install machine from the net using bpbatch that works great only bpbatch is not really under developnt and the script language is a bit buggy. I see only one option to boot windows from the net and
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: