Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/karthik/tradeoff

revisiting classic life-history tradeoffs with realistic assumptions.
https://github.com/karthik/tradeoff

Last synced: about 1 month ago
JSON representation

revisiting classic life-history tradeoffs with realistic assumptions.

Awesome Lists containing this project

README

        

# Life-history tradeoff analysis

author: Karthik Ram, [[email protected]](mailto:[email protected])

This repository contains all the code for my paper on life history trade off analysis. Basic organizational setup.

```
td1 (growth rate versus juvenile survival)
|_analysis
|_results
|_viz (visualization)

td3 (growth rate versus fecundity)
|_analysis
|_results
|_viz (visualization)
```
Each trade off folder has a more detailed README.

## Required R dependencies

`plyr`, `reshape2`, `ggplot2`, `varDev` (I am using an edited version saved as `varDev2`).

## Manuscript

Current version of the manuscript is in the `manuscript/` folder. To update the `PDF` and `.docx` version to most current, run the following commands:

```
# To generate a PDF
pandoc -s -S --bibliography tradeoff.bib --mathjax --csl the-american-naturalist.csl tradeoffms.md -o ms.pdf
# To generate a word document.
pandoc -s -S --bibliography tradeoff.bib --mathjax --csl the-american-naturalist.csl tradeoffms.md -o ms.docx

```