pmc
:package: Phylogenetic Monte Carlo: Quantifying Uncertainty in Phylogenetic Methods (now on CRAN)
Science Score: 49.0%
This score indicates how likely this project is to be science-related based on various indicators:
-
○CITATION.cff file
-
✓codemeta.json file
Found codemeta.json file -
✓.zenodo.json file
Found .zenodo.json file -
✓DOI references
Found 2 DOI reference(s) in README -
✓Academic publication links
Links to: zenodo.org -
○Committers with academic emails
-
○Institutional organization owner
-
○JOSS paper metadata
-
○Scientific vocabulary similarity
Low similarity (12.9%) to scientific vocabulary
Keywords from Contributors
fish
fishbase
taxonomy
Last synced: 7 months ago
·
JSON representation
Repository
:package: Phylogenetic Monte Carlo: Quantifying Uncertainty in Phylogenetic Methods (now on CRAN)
Basic Info
- Host: GitHub
- Owner: cboettig
- Language: R
- Default Branch: master
- Homepage: http://carlboettiger.info
- Size: 248 KB
Statistics
- Stars: 2
- Watchers: 2
- Forks: 1
- Open Issues: 3
- Releases: 1
Created almost 15 years ago
· Last pushed over 2 years ago
Metadata Files
Readme
Changelog
Contributing
Codemeta
README.Rmd
---
output:
md_document:
variant: markdown_github
---
```{r setup, include = FALSE}
knitr::opts_chunk$set(
cache = TRUE,
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-"
)
```
[](https://github.com/cboettig/pmc/actions/workflows/R-CMD-check.yaml)
[](https://cran.r-project.org/package=pmc)
[](https://zenodo.org/badge/latestdoi/1822987)
This is a lightweight implementation of my `pmc` package focusing on what I think are the more common use cases (e.g. it will no longer support comparisons of a `geiger` model against an `ouch` model). Further, it does not cover many of the newer model fitting that have been implemented since `pmc` was first released.
The goal of this release is mostly to provide compatibility with current versions of `geiger`.
## Getting started
Install the package:
```{r eval=FALSE}
library("devtools")
install_github("cboettig/pmc")
```
A trivial example with data simulated from the `lambda` model.
```{r}
library("pmc")
library("geiger")
library("phytools")
phy <- sim.bdtree(n=10)
dat <- sim.char(rescale(phy, "lambda", .5), 1)[,1,]
out <- pmc(phy, dat, "BM", "lambda", nboot = 50)
```
Plot the results:
```{r}
dists <- data.frame(null = out$null, test = out$test)
library("ggplot2")
library("tidyr")
library("dplyr")
dists %>%
gather(dist, value) %>%
ggplot(aes(value, fill = dist)) +
geom_density(alpha = 0.5) +
geom_vline(xintercept = out$lr)
```
## Citation
Carl Boettiger, Graham Coop, Peter Ralph (2012) Is your phylogeny informative? Measuring the power of comparative methods, Evolution 66 (7) 2240-51.
Owner
- Name: Carl Boettiger
- Login: cboettig
- Kind: user
- Company: UC Berkeley
- Website: http://carlboettiger.info
- Repositories: 173
- Profile: https://github.com/cboettig
CodeMeta (codemeta.json)
{
"@context": [
"https://doi.org/doi:10.5063/schema/codemeta-2.0",
"http://schema.org"
],
"@type": "SoftwareSourceCode",
"identifier": "pmc",
"description": "Monte Carlo based model choice for applied phylogenetics of\n continuous traits. Method described in Carl Boettiger, Graham Coop,\n Peter Ralph (2012) Is your phylogeny informative? Measuring\n the power of comparative methods, Evolution 66 (7)\n 2240-51. doi:10.1111/j.1558-5646.2011.01574.x.",
"name": "pmc: Phylogenetic Monte Carlo",
"codeRepository": "git://github.com/cboettig/pmc.git",
"issueTracker": "https://github.com/cboettig/pmc/issues",
"license": "https://spdx.org/licenses/CC0-1.0",
"version": "1.0.3",
"programmingLanguage": {
"@type": "ComputerLanguage",
"name": "R",
"version": "3.4.1",
"url": "https://r-project.org"
},
"runtimePlatform": "R version 3.4.1 (2017-06-30)",
"provider": {
"@id": "https://cran.r-project.org",
"@type": "Organization",
"name": "Central R Archive Network (CRAN)",
"url": "https://cran.r-project.org"
},
"author": [
{
"@type": "Person",
"givenName": "Carl",
"familyName": "Boettiger",
"email": "cboettig@gmail.com"
}
],
"maintainer": {
"@type": "Person",
"givenName": "Carl",
"familyName": "Boettiger",
"email": "cboettig@gmail.com"
},
"softwareSuggestions": [
{
"@type": "SoftwareApplication",
"identifier": "covr",
"name": "covr",
"provider": {
"@id": "https://cran.r-project.org",
"@type": "Organization",
"name": "Central R Archive Network (CRAN)",
"url": "https://cran.r-project.org"
}
},
{
"@type": "SoftwareApplication",
"identifier": "gridExtra",
"name": "gridExtra",
"provider": {
"@id": "https://cran.r-project.org",
"@type": "Organization",
"name": "Central R Archive Network (CRAN)",
"url": "https://cran.r-project.org"
}
},
{
"@type": "SoftwareApplication",
"identifier": "knitr",
"name": "knitr",
"provider": {
"@id": "https://cran.r-project.org",
"@type": "Organization",
"name": "Central R Archive Network (CRAN)",
"url": "https://cran.r-project.org"
}
},
{
"@type": "SoftwareApplication",
"identifier": "testthat",
"name": "testthat",
"provider": {
"@id": "https://cran.r-project.org",
"@type": "Organization",
"name": "Central R Archive Network (CRAN)",
"url": "https://cran.r-project.org"
}
}
],
"softwareRequirements": [
{
"@type": "SoftwareApplication",
"identifier": "dplyr",
"name": "dplyr",
"provider": {
"@id": "https://cran.r-project.org",
"@type": "Organization",
"name": "Central R Archive Network (CRAN)",
"url": "https://cran.r-project.org"
}
},
{
"@type": "SoftwareApplication",
"identifier": "geiger",
"name": "geiger",
"provider": {
"@id": "https://cran.r-project.org",
"@type": "Organization",
"name": "Central R Archive Network (CRAN)",
"url": "https://cran.r-project.org"
}
},
{
"@type": "SoftwareApplication",
"identifier": "ggplot2",
"name": "ggplot2",
"provider": {
"@id": "https://cran.r-project.org",
"@type": "Organization",
"name": "Central R Archive Network (CRAN)",
"url": "https://cran.r-project.org"
}
},
{
"@type": "SoftwareApplication",
"identifier": "parallel",
"name": "parallel"
},
{
"@type": "SoftwareApplication",
"identifier": "ouch",
"name": "ouch",
"provider": {
"@id": "https://cran.r-project.org",
"@type": "Organization",
"name": "Central R Archive Network (CRAN)",
"url": "https://cran.r-project.org"
}
},
{
"@type": "SoftwareApplication",
"identifier": "tidyr",
"name": "tidyr",
"provider": {
"@id": "https://cran.r-project.org",
"@type": "Organization",
"name": "Central R Archive Network (CRAN)",
"url": "https://cran.r-project.org"
}
}
],
"keywords": [
"comparativemethods",
"phylogenetics",
"montecarlo",
"traitevolution"
],
"contIntegration": "https://travis-ci.org/cboettig/pmc",
"releaseNotes": "git://github.com/cboettig/pmc.git/blob/master/NEWS",
"readme": "git://github.com/cboettig/pmc.git/blob/master/README.md",
"fileSize": "10.442KB",
"citation": [
{
"@type": "ScholarlyArticle",
"datePublished": "2012",
"author": [
{
"@type": "Person",
"givenName": "Carl",
"familyName": "Boettiger"
},
{
"@type": "Person",
"givenName": [
"Graham",
"M"
],
"familyName": "Coop"
},
{
"@type": "Person",
"givenName": "Peter",
"familyName": "Ralph"
}
],
"name": "Is your phylogeny informative? Measuring the power of comparative methods.",
"identifier": "10.1111/j.1558-5646.2011.01574.x",
"url": "http://doi.org/10.1111/j.1558-5646.2011.01574.x",
"paginiation": "2240--51",
"@id": "https://doi.org/10.1111/j.1558-5646.2011.01574.x",
"sameAs": "https://doi.org/10.1111/j.1558-5646.2011.01574.x",
"isPartOf": {
"@type": "PublicationIssue",
"issueNumber": "7",
"datePublished": "2012",
"isPartOf": {
"@type": [
"PublicationVolume",
"Periodical"
],
"name": "Evolution"
}
}
}
]
}
GitHub Events
Total
Last Year
Committers
Last synced: 8 months ago
Top Committers
| Name | Commits | |
|---|---|---|
| Carl Boettiger | c****g@g****m | 49 |
| cboettig | r****o@e****m | 7 |
| Carl Boettiger | c****g@g****m | 5 |
| Seth Ariel Green | s****e@g****m | 1 |
Issues and Pull Requests
Last synced: 7 months ago
All Time
- Total issues: 5
- Total pull requests: 3
- Average time to close issues: 2 minutes
- Average time to close pull requests: about 2 months
- Total issue authors: 2
- Total pull request authors: 2
- Average comments per issue: 0.6
- Average comments per pull request: 0.67
- Merged pull requests: 3
- Bot issues: 0
- Bot pull requests: 0
Past Year
- Issues: 0
- Pull requests: 0
- Average time to close issues: N/A
- Average time to close pull requests: N/A
- Issue authors: 0
- Pull request authors: 0
- Average comments per issue: 0
- Average comments per pull request: 0
- Merged pull requests: 0
- Bot issues: 0
- Bot pull requests: 0
Top Authors
Issue Authors
- cboettig (4)
- jackiebrown (1)
Pull Request Authors
- cboettig (2)
- setgree (1)
Top Labels
Issue Labels
Pull Request Labels
Packages
- Total packages: 1
-
Total downloads:
- cran 346 last-month
- Total docker downloads: 43,390
- Total dependent packages: 1
- Total dependent repositories: 0
- Total versions: 11
- Total maintainers: 1
cran.r-project.org: pmc
Phylogenetic Monte Carlo
- Homepage: https://github.com/cboettig/pmc
- Documentation: http://cran.r-project.org/web/packages/pmc/pmc.pdf
- License: CC0
-
Latest release: 1.0.6
published over 2 years ago
Rankings
Dependent packages count: 18.7%
Forks count: 21.9%
Average: 27.2%
Stargazers count: 28.5%
Downloads: 31.2%
Dependent repos count: 35.5%
Maintainers (1)
Last synced:
7 months ago
Dependencies
DESCRIPTION
cran
- dplyr * imports
- geiger * imports
- ggplot2 * imports
- ouch * imports
- parallel * imports
- tidyr * imports
- covr * suggests
- gridExtra * suggests
- knitr * suggests
- rmarkdown * suggests
- testthat * suggests
.github/workflows/R-CMD-check.yaml
actions
- actions/checkout v3 composite
- r-lib/actions/check-r-package v2 composite
- r-lib/actions/setup-pandoc v2 composite
- r-lib/actions/setup-r v2 composite
- r-lib/actions/setup-r-dependencies v2 composite