> x <- 1:5
> y <- 6:10
> plot(x=x, y=y)
> plot(y, x)
> plot(x=y, y=x)
> x
[1] 1 2 3 4 5
> y
[1] 6 7 8 9 10
> plot(x<-y, y<-x)
> x
[1] 6 7 8 9 10
> y
[1] 6 7 8 9 10
>
>From this example, you see that "=" and "<-" have different
behaviors inside argument lists. Check the archives for
ot
We did not push you to use RExcel ;-)
You decided on your own.
If you should use it depends on what you want.
If you want the results of R computations in Excel,
and you want numbers to live in separate cells,
then you should probably use it.
With our copy and paste you get lines of text,
not numb
Many thanks to Richard Heiberger for his many comments and suggestions as well
as Erich Neuwirth for their advice.I appreciate your time and effort in
replying to my queries.
But I feel really confused as to why I would want to use REXCEL if I can just
copy and paste my simple lines into the