Displaying 13 results from an estimated 13 matches for "golm".
Did you mean:
gold
2004 Oct 22
1
64 Bit
..., if there is R version available for a 64 bit computer. If yes for which processor an amd or for a 64 bit Mac
Thanks a lot
Daniel
____________________________________________________
Daniel Weicht
Max Planck Institute of Molecular Plant Physiology
Am Mühlenberg 1
14476 Golm, Germany
Phone +49 331 567 8277
e-mail weicht@mpimp-golm.mpg.de <mailto:weicht@mpimp-golm.mpg.de>
__________________________________________________
[[alternative HTML version deleted]]
2011 Sep 07
1
access objects
...ll.
Here's an example, I hope it clarifies what I'm trying to do:
obj1 <- 7:9
obj2 <- 6:2
testf <- function(k) plot(? noquote(paste("obj", k, sep=""))? )
testf(1) # should plot obj1
-------------------------------------
Berry Boessenkool
D-14476 Potsdam (OT Golm)
-------------------------------------
2015 Oct 06
2
Can this be done with NUT? (ordered shutdown, revisited)
...manager
machine (as in ssh, telnet, etc.), just the UPSD port.
Or should I look for something else (recommendations off-list)?
Thanks,
Steffen
--
Steffen Grunewald, Cluster Administrator
Max Planck Institute for Gravitational Physics (Albert Einstein Institute)
Am M?hlenberg 1
D-14476 Potsdam-Golm
Germany
~~~
Fon: +49-331-567 7274
Fax: +49-331-567 7298
Mail: steffen.grunewald(at)aei.mpg.de
~~~
2004 Oct 18
0
Increasing computiation time per column using lapply
...e doesnt
increase linearly with the amount of columns. Memory status is all fine
and I never need to start swapping.
I tried to remove the temp function and use a for-loop to iterate over
the columns instead of using apply but it does not solve my problem.
Thanx!
/Henning, redestig at mpimp-golm.mpg.de
2023 May 22
1
got nut 2.8.1 but despite reinstall, shows 2.7.4
>>gene heskett <gheskett at shentel.net> writes:
>>>Which file in the nut I pulled a month ago, should I start with to get
>>>the new version actually running? I still get - -V=2.7.4
>On 5/22/23 07:13, Greg Troxel wrote:
>>It is likely that you have built new nut but old nut is still on your
>>system. I do a 'sudo make install' to write over
2023 Oct 31
5
NUT v2.8.1 is released
...it was almost midnight, Cinderella became a pumpkin, and NUT was
released!..
Trick or treat?!
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://alioth-lists.debian.net/pipermail/nut-upsdev/attachments/20231031/f3590340/attachment.htm>
2023 Oct 31
5
NUT v2.8.1 is released
...it was almost midnight, Cinderella became a pumpkin, and NUT was
released!..
Trick or treat?!
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://alioth-lists.debian.net/pipermail/nut-upsdev/attachments/20231031/f3590340/attachment.htm>
2003 Sep 24
5
splitting clusters
Hi All:
I am clustering 500 genes using hclust of R. Visualizing cluster
membership becomes difficult with so many genes in each cluster...Is there
a way of printing the dendrogram in multiple pages so that I can clearly
see what is in each cluster?
Thanks in advance.
Karthi.
2023 May 22
2
got nut 2.8.1 but despite reinstall, shows 2.7.4
...upgrading to Bookworm. You're not supposed to
use "sid" or "testing" packages on an older system though.)
HTH,
Steffen
--
Steffen Grunewald, Cluster Administrator
Max Planck Institute for Gravitational Physics (Albert Einstein Institute)
Am M?hlenberg 1 * D-14476 Potsdam-Golm * Germany
~~~
Fon: +49-331-567 7274
Mail: steffen.grunewald(at)aei.mpg.de
~~~
2005 Sep 21
5
SAX Parser best practise
Dear All,
I have a question regarding best practise in setting up a XML parser
within R.
Because I have files with more than 100 MB and I'm only interested in
some values I think a SAX-like parser using xmlEventParse() will be the
best solution.
Unfortunately the values I'm looking for, to construct some higher "mass
spectrum", are distributed over different lines: as
2005 Jan 10
1
Invisible plot using RSvgDevice
Dear list members,
I have a probably simple question concerning the RSvgDevice. After upgrading from R 1.9.0 to R 2.0.1 the computet svg files looking empty.
Each time the RSvgDevice 0.5.3 were used.
Scales and headers are printed but the plots are missing:
<rect x="433.10" y="246.13" width="0.93" height="29.74"
2013 Mar 13
1
Empty cluster / segfault using vanilla kmeans with version 2.15.2
Hello,
here is a working reproducible example which crashes R using kmeans or
gives empty clusters using the nstart option with R 15.2.
library(cluster)
kmeans(ruspini,4)
kmeans(ruspini,4,nstart=2)
kmeans(ruspini,4,nstart=4)
kmeans(ruspini,4,nstart=10)
?kmeans
either we got empty always clusters and or, after some further commands
an segfault.
regards,
Detlef Groth
------------
[R] Empty
2005 Aug 15
4
Re-sort list of vectors
Hi.
Can anyone suggest a simple way to re-sort in R a list of vectors of the
following form?
input
$"1"
a b c
1 2 3
$"2"
a b c
4 5 6
Output should be something like:
"a"
"1" 1
"2" 4
"b"
"1" 2
"2" 5
"c"
"1" 3
"2" 6
I've been futzing with mapply(), outer(), split(), rbind()