Re: [R] about R stat.table function

2013-07-30 Thread Gu, LanYing
ards, Lan -Original Message- From: David Carlson [mailto:dcarl...@tamu.edu] Sent: Monday, July 29, 2013 5:16 PM To: Gu, LanYing; r-help@r-project.org Subject: RE: [R] about R stat.table function Where did you find out about stat.table()? There is one in package Epi, but who knows if

Re: [R] about R stat.table function

2013-07-29 Thread arun
Hi, Try: library(Epi)  stat.table(tension,list(count(),mean(breaks)),data=warpbreaks) # --- # tension   count() mean(breaks)   #---  #L  18    36.39   #M  18    26.39   #H  18    21.67   #-

Re: [R] about R stat.table function

2013-07-29 Thread David Carlson
Where did you find out about stat.table()? There is one in package Epi, but who knows if it is the one you are looking for? If you don't know about packages and the library() function, you need to work through a basic tutorial on R. You can't really expect to download a script file and run it witho

Re: [R] about R stat.table function

2013-07-29 Thread Rui Barradas
Hello, Where did you get that script from? You should ask the person that gave it to you for that missing function, of which we know nothing about. Hope this helps, Rui Barradas Em 29-07-2013 20:23, Gu, LanYing escreveu: Hi R Help group, I try to use stat.table function in my R script, whe