From 19a7247456b15706e004b7600d67cbdf8d80383b Mon Sep 17 00:00:00 2001 From: Tyler Date: Wed, 13 May 2015 23:01:03 -0400 Subject: [PATCH] updated readme --- README.Rmd | 4 +++- README.md | 1 + 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/README.Rmd b/README.Rmd index 14892a7..74409ce 100644 --- a/README.Rmd +++ b/README.Rmd @@ -55,13 +55,15 @@ We can see its use in actual model reproting as well: ```{r} mod1 <- t.test(1:10, y = c(7:20)) + sprintf( "t = %s (%s)", f(mod1$statistic), p(mod1$p.value) ) +``` - +```{r} mod2 <- t.test(1:10, y = c(7:20, 200)) sprintf( diff --git a/README.md b/README.md index 9c4e8b6..0a4e020 100644 --- a/README.md +++ b/README.md @@ -56,6 +56,7 @@ Demonstration We can see its use in actual model reproting as well: mod1 <- t.test(1:10, y = c(7:20)) + sprintf( "t = %s (%s)", f(mod1$statistic),