search for: heramb

Displaying 5 results from an estimated 5 matches for "heramb".

2012 Nov 07
6
how to generate a set of random numbers that sum to 1 with uniform distribution of elements
Hi, I am looking for a way to generate a matrix of random numbers in a way that each row of the matrix would sum to 1 and that the numbers in the columns of the matrix would have a uniform distribution. So far I have found several ways to create random numbers that would sum to 1, but then the distribution of the individual elements is more or less skewed - there are much more small numbers than
2005 Nov 03
1
System error 53 has occurred. The network path was not found.
Hi gurus, Am using Win XP professional and SUSE 9.3 professional and samba version is 3.0.13-1.1 am able to access my XP machine from samba server using smbclient \\<xp<file://\\<xp>machine name>\<share drive> but when i give net view \\<samba <file://\\<samba> server> it gives following error "System error 53 has occurred. The network path was not
2012 Sep 20
1
SQL query with Multicore option on R -linux
Hi all, I have the following sql query that I am executing on a machine with single core. I want to know how can I execute the same sqery on a maching that is running with 4 cores. Please provide me the code. NEW_TABLE <- rhive.query("SELECT A, B, COUNT(C) FROM TABLE_A WHERE A>='01-01-2012'") Also let me know how can I leverage only 2 / 3 cores of the machine.
2012 Sep 20
2
VarBrul in R
Several years ago there were R implementations of a socio-linguistics analysis method called Variable Rule Analysis namely rbrul and r-varb. Both neither of the sites listed (in the method's WikiPedia page http://en.wikipedia.org/wiki/Variable_rules_analysis ) appear to be online any more (one was at UPenn and the other at Indiana). Does anyone know a) whether the code for either or both of
2012 Sep 17
3
I want to send the vector a into the Object A.......
a=c(1,2,3) b=c(23, 24, 25) x=c("a", "b") #if (length(x[1]) == 0) {cat("x[1] is having 3 elements")} Suppose I want to send the vector a into the Object A, um getting only "a" as the ouput for Object A but not getting required output as the vector with the elements 1, 2, 3 with the following code A<- x[1] How to code it? Can anyone help? Notice: The