https://github.com/ax3man/phylopath
Perform phylogenetic path analysis in R.
https://github.com/ax3man/phylopath
analysis comparative-methods path phylogenetics r rstats
Last synced: 12 months ago
JSON representation
Perform phylogenetic path analysis in R.
- Host: GitHub
- URL: https://github.com/ax3man/phylopath
- Owner: Ax3man
- Created: 2016-08-08T14:09:18.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2024-09-19T16:48:51.000Z (almost 2 years ago)
- Last Synced: 2025-04-21T20:07:25.226Z (over 1 year ago)
- Topics: analysis, comparative-methods, path, phylogenetics, r, rstats
- Language: R
- Homepage: https://ax3man.github.io/phylopath/
- Size: 17.7 MB
- Stars: 13
- Watchers: 3
- Forks: 3
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# phylopath
[](https://cran.r-project.org/package=phylopath) [](http://cran.rstudio.com/web/packages/phylopath/index.html) [](http://www.repostatus.org/#active)
This package implements phylogenetic path analysis in R.
Install the package using:
```{r}
install.packages("phylopath")
```
You may need to install the downstream dependency `graph` from Bioconductor:
```{r}
if (!require("BiocManager", quietly = TRUE)) install.packages("BiocManager")
BiocManager::install("graph")
```
Or if you'd like to install the development version (here on github), use:
```{r}
remotes::install_github("Ax3man/phylopath")
```
It's easiest to start on the [website](https://ax3man.github.io/phylopath) and first read the introduction [here](https://ax3man.github.io/phylopath/articles/intro_to_phylopath.html), or read the [paper in PeerJ](https://doi.org/10.7717/peerj.4718).
If you find any problems, or if you have suggestions for improvements, please file those under [issues](/issue). PRs welcome.