Learn R Programming

Rquefts (version 1.2-3)

Fertilizers: Helper functions to go from fertilizers to nutrients

Description

Computes the amount of nutrients given a rate of fertilizer.

Usage

fertilizers()
nutrientRates(supply, treatment)

Arguments

supply

data.frame with columns "N", "P", "K" expressed as percentage of the product (row)

treatment

amounts applied

Examples

Run this code
# fertilizer product list
fert <- fertilizers()
# shortening some of the names for display
fert[,2] = substr(fert[,2], 1, 20)
# contents are expressed as a percentage.
fert

myferts <- fert[c(8,15), ] 
nutrientRates(myferts, c(100,50))

Run the code above in your browser using DataLab