[R] xlsReadWrite library

2009-03-19 Thread Pascal Candolfi
Any idea why this library was removed and where could I find it for Windows
(only Unix in the Archive) ?
Much thanks in advance.
Pascal

[[alternative HTML version deleted]]

__
R-help@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.


[R] table with 3 varialbes

2009-02-19 Thread Pascal Candolfi
I have the initial matrice:

 *data.frame(Subject=rep(100:101, each=4), Quarter=rep(paste(Q,1:4,
sep=),2), Boolean = rep(c(Y,N),4))*
  Subject Quarter Boolean
1100  Q1   Y
2100  Q2   N
3100  Q3   Y
4100  Q4   N
5101  Q1   Y
6101  Q2   N
7101  Q3   Y
8101  Q4   N
...


And I would like to group the Subject by Quarter using as a result in the
table the value of the third variable (Boolean). The final result would
give:

  Subjet Q1 Q2 Q3 Q4
1100  Y  Y  Y  Y
2101  N  N  N  N
...


I started using the *table(Subject, Quarter)* but can't find a way to
correspond the Boolean information in the table
Thanks in advance for the ideas...

Pascal Candolfi

[[alternative HTML version deleted]]

__
R-help@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.


[R] table with 3 variables

2009-02-19 Thread Pascal Candolfi
I have the initial matrice:

 *data.frame(Subject=rep(100:101, each=4), Quarter=rep(paste(Q,1:4,
sep=),2), Boolean = rep(c(Y,N),4))*
  Subject Quarter Boolean
1100  Q1   Y
2100  Q2   N
3100  Q3   Y
4100  Q4   N
5101  Q1   Y
6101  Q2   N
7101  Q3   Y
8101  Q4   N
...


And I would like to group the Subject by Quarter using as a result in the
table the value of the third variable (Boolean). The final result would
give:

  Subjet Q1 Q2 Q3 Q4
1100  Y  Y  Y  Y
2101  N  N  N  N
...


I started using the *table(Subject, Quarter)* but can't find a way to
correspond the Boolean information in the table
Thanks in advance for the ideas...

Pascal Candolfi

[[alternative HTML version deleted]]

__
R-help@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.