Learn R Programming

aridagri (version 2.0.3)

crop_growth_analysis: Crop Growth Analysis (CGR, RGR, NAR, LAI)

Description

Calculates crop growth parameters from sequential harvest data.

Usage

crop_growth_analysis(dry_weight, leaf_area, days, verbose = TRUE)

Value

Data frame with growth parameters

Arguments

dry_weight

Vector of dry matter at different stages

leaf_area

Vector of leaf area at different stages

days

Vector of days after sowing

verbose

Logical. If TRUE (default), prints formatted output to console.

Author

Lalit Kumar Rolaniya, Ram Lal Jat, Monika Punia, Raja Ram Choudhary

Examples

Run this code
dry_weight <- c(0.5, 2.1, 8.5, 25, 45, 62, 75)
leaf_area <- c(15, 85, 350, 800, 950, 850, 600)
days <- c(15, 30, 45, 60, 75, 90, 105)
crop_growth_analysis(dry_weight, leaf_area, days)

Run the code above in your browser using DataLab