similar to: DBM databases for R?

Displaying 20 results from an estimated 1000 matches similar to: "DBM databases for R?"

2002 Mar 26
1
comparing row by row in matrix
I don't know the Russell-Rao coefficient but maybe this will help: You can compute the number of times y and x are both 1 (that's what your function f does) by counting 1s in y*x, i.e., sum(y*x), aka t(y)%*%x. Ordinary matrix multiplication does this row-by-column, so if M and N are two binary matrices, M%*%t(N) will have (i,j) entry equal to the count of 1s in common to row i of M and
2002 Apr 07
3
German umlaut in xlab
Dear all, which font do I have to choose to use German umlauts at x/ylab in plot? Do I have to change Rdevga; and how? Or should I use these Hershey vectors? I looked quite a long time for a solution, which should be easy, so I thought I'd better ask here. Maybe some other people have already solved this problem. Regards, Petra - --------------------------------------------------- Petra
2002 Jan 09
1
Distance matrix by cosine?
Hello, a. is there a possibility to obtain a distance matrix with the cosine between vectors?? hclust, hierclust, dist will not work and seem to be hard to extend. b. if there is not: Is the cosine between vectors implemented somewhere? Thanks for all hints and advice! Petra Steiner -------------- next part -------------- An HTML attachment was scrubbed... URL:
2003 Sep 26
1
a. crossing branches with hclust, b. plot.dendrogram
Hello, a. when I use hclust with the methods media, centroid, and mcquitty, and plot the results, the dendrograms have lines that are crossing each other. Is this ok? b. My next question refers to plot.dendrogram: How can I use parameters as "hang" or "cex" here? E.g. for st <- as.dendrogram(subtreeshc[[x]]) I would like to have something like this, where cex and hang
2019 Apr 03
2
is it possible to create a snapshot from a guest residing in a plain partition ?
Hi, i can store the disk of a guest in a plain partition which isn't formatted. That's no problem, i did it already several times, although the promised speed increase didn't appear. But is it possible to create from such a guest a snapshot in a .sn file using virsh ? Regards, Bernd -- Bernd Lentes Systemadministration Institut für Entwicklungsgenetik Gebäude 35.34 - Raum
2018 Dec 04
3
concurrent migration of several domains rarely fails
Hi, i have a two-node cluster with several domains as resources. During testing i tried several times to migrate some domains concurrently. Usually it suceeded, but rarely it failed. I found one clue in the log: Dec 03 16:03:02 ha-idg-1 libvirtd[3252]: 2018-12-03 15:03:02.758+0000: 3252: error : virKeepAliveTimerInternal:143 : internal error: connection closed due to keepalive timeout The
2019 Jun 04
2
MacOS parallel::makeCluster fails
Hi all, The call parallel::makeCluster(1L) hangs infinitely on my MacOS machine which seems to be already reported by some people (e.g., https://stat.ethz.ch/pipermail/r-devel/2018-February/075565.html). However, the solutions posted on SO, GH or R-devel do not work in my case. So far, I unsuccessfully tested ? 1. Couple of reboots 2. Adding 192.0.0.1 to /etc/hosts 3. Using R.app
2002 Apr 29
3
how to trap any warnings from an R function
Within an user function, how are the warnings from an R function be trapped (such that some proper actions can be taken)? 'last.warning' is returned only at the top level. Pointers are appreciated. -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.- r-help mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html Send "info",
2018 Dec 07
3
Re: concurrent migration of several domains rarely fails
On 12/6/18 10:12 AM, Lentes, Bernd wrote: > >> Hi, >> >> i have a two-node cluster with several domains as resources. During testing i >> tried several times to migrate some domains concurrently. >> Usually it suceeded, but rarely it failed. I found one clue in the log: >> >> Dec 03 16:03:02 ha-idg-1 libvirtd[3252]: 2018-12-03 15:03:02.758+0000: 3252:
2019 Jul 12
1
MacOS parallel::makeCluster fails
Hi Thomas, thanks for your reply (and thanks for your patience...). I am now using the following minimal reprex: > library(parallel) > cl <- makeCluster(2L) I freshly started the machine and did not open any other app. Just R.app (3.6.1). After executing the second line of code, R seems to hang infinitely and does not respond. The R process itself uses almost no CPU. Unfortunately,
2006 Feb 13
0
Perl DBM problem...
Kinda CentOS related so bear with me. :) We have little legacy perl app on an old RH 7.3 box I'm trying to migrate over to a CentOS 4 system. Some information the app uses is in Berkley DB format [root at korma data]# file *.db applic.db: Berkeley DB (Hash, version 5, native byte-order) cables.db: Berkeley DB (Hash, version 5, native byte-order) connector.db: Berkeley DB (Hash, version
2016 Jun 09
1
cumsum method in Math group
When running a = runif(10) class(a) = "foo" Math.foo = function(x, ...) { NextMethod(.Generic) } signif(a, 3) cumsum(a) I don't understand why cumsum strips the class, but signif does not. Both claim in the documentation that "These are generic functions: methods can be defined for them individually or via the ?Math? group generic." -- Edzer Pebesma Institute for
2006 Jul 22
2
projection utility in ArcView
Hello to all, I am using ArcView 3.2 under Wine. For now I have been able to do what I need, except for the projection utility... it seems that I am missing some dll, but I have no clue which ones could be... If somebody knows the solution, please let me know. I am new to Wine, and have no clue how to search for the right dll... Thanks a lot to all of you and to this great Wine-project!!! Petra
2012 Jan 10
4
Sum of a couple of variables of which a few have NA values
Dear everyone, I have looked all over the internet but I cannot find a way to solve my problem. In my data I want to sum a couple of variables. Some of these variables have NA values, and when I add them together, the result is NA dat <- data.frame( id = gl(5,1), var1 = rnorm(5, 10), var2 = rnorm(5, 7), var3 = rnorm(5, 6), var4 = rnorm(5, 3), var5 = rnorm(5, 8) ) dat[3,3] <- NA dat[4,5]
2005 Aug 25
1
box m-test
Hello everybody, Is there in R a so called box m-test for testing the equality of the variance/cov. matrix for checking on homoscedasticity? I could not find it among the traditional packages for multivariate statistics... Petra -- Petra Wallem Centro de Estudios Avanzados en Ecolog伱伃a & Biodiversidad (CASEB) Departamento de Ecolog伱伃a Facultad de Ciencias Biol伱伋gicas Pontificia
2005 Dec 26
3
factorial anova
Hello every body, I am trying to do a factorial anova analysis following this model: model<-anova(lm(responsevariable~factorA*factorB)) model<-anova(lm(luz$dosel~luz$estado*luz$Bosque)) Df Sum Sq Mean Sq F value Pr(>F) estado 1 6931.1 6931.1 41.6455 7.974e-06 *** Bosque 1 36.6 36.6 0.2197 0.6456 estado:Bosque 1 36.6 36.6 0.2197 0.6456 Residuals
2003 Jan 17
2
Linux permissions vs Samba permissions
Okay, admittedly I'm running an old version 2.0.5, but, why do I have to set the eXecute permission in Linux before Samba will let a Windows client see any files? Why would execute have anything to do with read and/or write? I would think I could set -rw-rw---- or -rw-rw-rw- and be just fine, but oh no, you get an empty list and cannot create new files until I change it to -rwxrwx--- or
2004 Jul 05
4
density(x)
Dear experts, when trying to estimate an kernel density function with density(x) I get the following error message with imported data from either EXCEL or text files: Error in density(spr) : argument must be numeric. Other procedues such as truehist work. If I generate data within R density works fine. Does anybody have an idea? Yours -- Christoph Hanck Wissenschaftliche Hilfskraft
2017 Oct 16
1
(no subject)
Hello again, I'm glad to tell you that I fixed that error. It was gcc compiler error and I found the solution right here: https://askubuntu.com/questions/26498/choose-gcc-and-g-version (this link was sent by Harutyun Khachatryan). I changed the versions of gcc and g++ from 4.3 and 4.4 to 4.8 and 4.9 and it worked. I also posted the solution in the gist I've sent you before. Thank you
2017 Aug 04
3
Status of llvm.experimental.vector.reduce.* intrinsics
I assume smaller types like <4 x i1> are getting zero extended to e.g., i8? Am 04.08.2017 um 15:58 schrieb Amara Emerson: > Actually for mask vectors of i1 values, you don't need to use reductions > at all(although for SVE this is what we'll do). You can instead bitcast > the vector value to an i8/i16/whatever and then compare against zero. > > Amara > > On