Displaying 5 results from an estimated 5 matches for "outokumpu".
2005 Aug 23
6
priority of operators in the FOR ( ) statement
Dear All,
I spent an entire evening in debugging a small, fairly simple program in R
- without success. It was my Guru in Bayesian Analysis, Thomas Fridtjof,
who was able to diagonose the problem. He said that it took a long time
for him also to locate the problem.
This program illustrates in some ways the shortcomings of the error
messages that R responds with. In this case, it was quite
2005 May 20
5
getting the unique values and counts from a vector
Hi all,
>From a vector, I want to get the unique values and the counts of these
unique values in the vector. For example,
x<-c(2 ,1 ,2, 1, 4 ,2 ,1, 4 ,1 ,1)
xu<-unique(x)
xn<-numeric(length(xu))
for (i in 1:length(xu)) {xn[i]<-length(which(x==xu[i]))}
There must be a very much simpler method of doing this. Can somebody
direct me to the functions that I must read in order to do
2005 Mar 11
1
FW: Samba 3.0.11 on AIX 4.3
Eh ... will someone kindly take a look at this? I have "reduced"
the mail since it wasn't answered at all since I sent it in a
couple of days ago. Thanks.
Hi All,
Pls has anyone successfully installed Samba 3 on an AIX 4.3 (RS6000)
system?
The only precompiled binary I was able to find - v 3.0.4 from
bullfreeware.com
did not work after installation. I haven't been
2005 May 20
1
legend as a subtitle
Very little space is available in one of my plots for the legend. I would
like to lift it out of the main plot area and present it in the subtitle
area. Would appreciate any help that I can get.
Ravi Vishnu
This message is meant for the addressee only and may contain
confidential and legally privileged information. Any unauthorised
review, use, copying, storage, disclosure or distribution
2005 Aug 24
0
(Fwd) Re: priority of operators in the FOR ( ) statement
Hi
On 23 Aug 2005 at 12:03, Ravi.Vishnu at outokumpu.com wrote:
> Dear All,
> I spent an entire evening in debugging a small, fairly simple
program
> in R - without success. It was my Guru in Bayesian Analysis,
Thomas
> Fridtjof, who was able to diagonose the problem. He said that it
took
> a long time for him also to locate t...