Displaying 3 results from an estimated 3 matches for "7emvalle".
2010 Apr 18
2
Table or file as STDIN to the R Script
Hi all,
I am trying to call the R script/ R Program via my Shell Script. I need to
pass a file to the R script as an argument. When I am trying to do that I am
getting error and only first line of the file is being read. Can you tell me
how should I do that so that it reads the entire file in a R object so that
later I am able to process the matrix operation on that file. It is a tab
delimited
2010 Apr 26
5
How to make legend with line+ character
Dear all,
I have a multiline plot with each line labeled with a different letter.
But I'm not able to make the legend display the same kind of pattern
'-a-', instead the letter is overwritten by the line. A simpler legend
with only the letter is not very visible and the pt.bg does nothing with
letters. Any idea?
plot(1:10,10:1,lty=1,type='b', lwd=2,pch='a')
2010 Sep 16
4
help me understand how things work.
Hello I have some strange output from R and I try to understand how R works.
Could you please help me with that?
temp <- rbind (c(10,1),c(99,98))
> temp
[,1] [,2]
[1,] 10 1
[2,] 99 98
> dist(temp)
1
2 131.6435
> sqrt(dist(temp))
1
2 11.47360
so far so good.
until the nex line: when I try to do what i did before but adding the 1/(what I
did