powered by
Calculates crop growth parameters from sequential harvest data.
crop_growth_analysis(dry_weight, leaf_area, days, verbose = TRUE)
Data frame with growth parameters
Vector of dry matter at different stages
Vector of leaf area at different stages
Vector of days after sowing
Logical. If TRUE (default), prints formatted output to console.
Lalit Kumar Rolaniya, Ram Lal Jat, Monika Punia, Raja Ram Choudhary
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