Hi R Help group,
I try to use stat.table function in my R script, when I run stat.table in R. it
shows that "No stat.function found", and I try to get help using
"?stat.table" it shows that "No documentation for
'stat.table' in specified packages and libraries:
you could try '??stat.table'".
it seems no "stat.table" function in my R. I want to know Do I need to
install this function? From which website I could install this function? Could
you please guide me how to do.
Many thanks,
Lan
________________________________
This e-mail message (and any attachments) may contain co...{{dropped:11}}
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, when I run stat.table in R. it shows that "No stat.function found", and I try to get help using "?stat.table" it shows that "No documentation for 'stat.table' in specified packages and libraries: > you could try '??stat.table'". > > it seems no "stat.table" function in my R. I want to know Do I need to install this function? From which website I could install this function? Could you please guide me how to do. > > Many thanks, > > Lan > > ________________________________ > > > This e-mail message (and any attachments) may contain co...{{dropped:11}} > > ______________________________________________ > R-help at 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. >
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
without knowing anything about R.
The main webpage for R is at http://www.r-project.org/
The official documentation is at
http://cran.r-project.org/manuals.html
User contributed manuals and tutorials in multiple languages
at
http://cran.r-project.org/other-docs.html
90 two minute R tutorials at http://www.twotorials.com/
-------------------------------------
David L Carlson
Associate Professor of Anthropology
Texas A&M University
College Station, TX 77840-4352
----Original Message-----
From: r-help-bounces at r-project.org
[mailto:r-help-bounces at r-project.org] On Behalf Of Gu, LanYing
Sent: Monday, July 29, 2013 2:24 PM
To: r-help at r-project.org
Subject: [R] about R stat.table function
Hi R Help group,
I try to use stat.table function in my R script, when I run
stat.table in R. it shows that "No stat.function found", and I
try to get help using "?stat.table" it shows that "No
documentation for 'stat.table' in specified packages and
libraries:
you could try '??stat.table'".
it seems no "stat.table" function in my R. I want to know Do I
need to install this function? From which website I could
install this function? Could you please guide me how to do.
Many thanks,
Lan
________________________________
This e-mail message (and any attachments) may contain\ c...{{dropped:11}}
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?
?#-------------------------------
A.K.
----- Original Message -----
From: "Gu, LanYing" <LanYing.Gu at cancercare.on.ca>
To: "r-help at r-project.org" <r-help at r-project.org>
Cc:
Sent: Monday, July 29, 2013 3:23 PM
Subject: [R] about R stat.table function
Hi R Help group,
I try to use stat.table function in my R script, when I run stat.table in R. it
shows that "No stat.function found", and I try to get help using
"?stat.table" it shows that "No documentation for
'stat.table' in specified packages and libraries:
you could try '??stat.table'".
it seems no "stat.table" function in my R. I want to know Do I need to
install this function? From which website I could install this function? Could
you please guide me how to do.
Many thanks,
Lan
________________________________
This e-mail message (and any attachments) may contain co...{{dropped:11}}
______________________________________________
R-help at 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.