commit | 78e61224400ce026e332bc892228cab2a09fd6f4 | [log] [tgz] |
---|---|---|
author | Hao Zhu <haozhu233@gmail.com> | Wed May 24 20:53:35 2017 -0400 |
committer | Hao Zhu <haozhu233@gmail.com> | Wed May 24 20:53:35 2017 -0400 |
tree | 7d2e5bca7e4e48a4566e29e293ba72e6781bf2f8 | |
parent | 179d39170a536419729702dc84eda86dd78927df [diff] [blame] |
Drop version due to CRAN resubmission; Add examples as requested
diff --git a/man/group_rows.Rd b/man/group_rows.Rd index 1a313e6..6cf58ee 100644 --- a/man/group_rows.Rd +++ b/man/group_rows.Rd
@@ -30,3 +30,9 @@ \description{ Group a few rows in a table together under a label. } +\examples{ +x <- knitr::kable(head(mtcars), "html") +# Put Row 2 to Row 5 into a Group and label it as "Group A" +group_rows(x, "Group A", 2, 5) + +}