-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #126 from TGuillerme/master
v1.8 release
- Loading branch information
Showing
244 changed files
with
20,290 additions
and
3,501 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
# Workflow derived from https://github.com/r-lib/actions/tree/v2/examples | ||
# Need help debugging build failures? Start at https://github.com/r-lib/actions#where-to-find-help | ||
on: | ||
push: | ||
branches: [main, master] | ||
pull_request: | ||
branches: [main, master] | ||
|
||
name: test-coverage | ||
|
||
jobs: | ||
test-coverage: | ||
runs-on: ubuntu-latest | ||
env: | ||
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- uses: r-lib/actions/setup-r@v2 | ||
with: | ||
use-public-rspm: true | ||
|
||
- uses: r-lib/actions/setup-r-dependencies@v2 | ||
with: | ||
extra-packages: any::covr | ||
needs: coverage | ||
|
||
- name: Test coverage | ||
run: covr::codecov(quiet = FALSE) | ||
shell: Rscript {0} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,14 @@ | ||
Package: dispRity | ||
Title: Measuring Disparity | ||
Author: Thomas Guillerme [aut, cre, cph], | ||
Mark N Puttick [aut, cph] | ||
Authors@R: c(person("Thomas", "Guillerme", role = c("aut", "cre", "cph"), | ||
email = "[email protected]", | ||
comment = c(ORCID = "0000-0003-4325-1275")), | ||
person("Mark", "Puttick", role = c("aut", "cph")), | ||
person("Jack", "Hatfield", role = c("aut", "cph")) | ||
) | ||
Maintainer: Thomas Guillerme <[email protected]> | ||
Version: 1.7.0 | ||
Date: 2022-08-08 | ||
Version: 1.8 | ||
Date: 2023-12-11 | ||
Description: A modular package for measuring disparity (multidimensional space occupancy). Disparity can be calculated from any matrix defining a multidimensional space. The package provides a set of implemented metrics to measure properties of the space and allows users to provide and test their own metrics. The package also provides functions for looking at disparity in a serial way (e.g. disparity through time) or per groups as well as visualising the results. Finally, this package provides several statistical tests for disparity analysis. | ||
Depends: | ||
R (>= 3.6.0), | ||
|
@@ -16,6 +20,7 @@ Imports: | |
Claddis, | ||
ellipse, | ||
geometry, | ||
GET, | ||
graphics, | ||
grDevices, | ||
MASS, | ||
|
@@ -24,17 +29,16 @@ Imports: | |
parallel, | ||
phangorn, | ||
phyclust, | ||
phylolm, | ||
utils, | ||
vegan, | ||
scales, | ||
spptest, | ||
zoo, | ||
License: GPL-3 | file LICENSE | ||
Remotes: | ||
github::myllym/spptest@no_fastdepth | ||
Suggests: | ||
MCMCglmm, | ||
geoscale, | ||
testthat, | ||
knitr | ||
RoxygenNote: 7.2.0 | ||
RoxygenNote: 7.2.3 | ||
URL: https://github.com/TGuillerme/dispRity |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.