Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/R-CMD-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
shell: Rscript {0}

- name: Restore R package cache
uses: actions/cache@v2
uses: actions/cache@v4
with:
path: ${{ env.R_LIBS_USER }}
key: ${{ runner.os }}-${{ hashFiles('.github/R-version') }}-1-${{ hashFiles('.github/depends.Rds') }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-coverage.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
shell: Rscript {0}

- name: Restore R package cache
uses: actions/cache@v2
uses: actions/cache@v4
with:
path: ${{ env.R_LIBS_USER }}
key: ${{ runner.os }}-${{ hashFiles('.github/R-version') }}-1-${{ hashFiles('.github/depends.Rds') }}
Expand Down
11 changes: 6 additions & 5 deletions DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ Authors@R: c(
person(given = "Cristian",
family = "Roman-Palacios",
role = c("aut","cre"),
email = "cromanpa94@email.arizona.edu",
comment = c(ORCID="0000-0003-4692-3225")
email = "cromanpa@arizona.edu",
comment = c(ORCID="0000-0003-1696-4886")
),
person(given = "April",
family = "Wright",
Expand All @@ -29,13 +29,14 @@ Authors@R: c(
family = "Norman",
role = c("rev"))
)
URL: https://ropensci.github.io/treedata.table, https://docs.ropensci.org/treedata.table/, https://github.com/ropensci/treedata.table/
URL: https://ropensci.github.io/treedata.table/, https://docs.ropensci.org/treedata.table/, https://github.com/ropensci/treedata.table/
BugReports: https://github.com/ropensci/treedata.table/issues
Description: An implementation that combines trait data and a phylogenetic tree (or trees) into a
single object of class treedata.table. The resulting object can be easily
single object of class 'treedata.table'. The resulting object can be easily
manipulated to simultaneously change the trait- and tree-level sampling.
Currently implemented functions allow users to use a 'data.table' syntax when
performing operations on the trait dataset within the treedata.table object.
performing operations on the trait dataset within the 'treedata.table' object.
For more details see Roman-Palacios et al. (2021) <doi:10.7717/peerj.12450>.
License: MIT + file LICENSE
Depends:
R (>= 2.10),
Expand Down
2 changes: 2 additions & 0 deletions R/tdt_methods.R
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
#'
#' @param x a treedata.table object
#' @param ... Additional arguments passed to head.data.table
#' @return First part of an treedata.table object
#' @examples
#' data(anolis)
#' td <- as.treedata.table(anolis$phy, anolis$dat)
Expand All @@ -17,6 +18,7 @@ head.treedata.table <- function(x, ...) {
#'
#' @param x a treedata.table object
#' @param ... Additional arguments passed to head.data.table
#' @return Last part of an treedata.table object
#' @examples
#' data(anolis)
#' td <- as.treedata.table(anolis$phy, anolis$dat)
Expand Down
3 changes: 3 additions & 0 deletions man/head.treedata.table.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions man/tail.treedata.table.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading