| TNdfF | R Documentation |
The total quantity of plant or soil N that is derived from fertilizer. Formula: TNdfF = (NdfF/100) * (PlantN or SoilN)
TNdfF(NdfF, PlantN = NULL, SoilN = NULL)
NdfF |
N derived from Fertilizer expressed as a percentage (0-100). |
PlantN |
Optional numeric vector for plant N content. |
SoilN |
Optional numeric vector for soil N content. |
A numeric vector of TNdfF values.
NdfF <- c(15, 20)
PlantN <- c(3.0, 3.5)
# Case 1: Using Plant N
TNdfF(NdfF, PlantN = PlantN)
# Case 2: Using Soil N (must specify SoilN explicitly)
SoilN <- c(100, 120)
TNdfF(NdfF, SoilN = SoilN)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.