Plot G(theta) profiles for one or several leaf angle distribution functions with theta in [0, pi/2]. Requires ggplot2 package.

plotG(pdf = leafAngleDistribution, chi = 0.6, mu = 1.1, nu = 1.3)

Arguments

pdf

the name of the leaf angle distribution functions. One of "uniform", "spherical", "planophile", "erectophile", "plagiophile", "extremophile", "ellipsoidal", "twoParamBeta".

chi

a float, parameter of the ellipsoidal leaf angle distribution. The ratio the ratio horizontal axis over vertical axis. See section "Leaf Angle Ditribution functions" for details.

mu

a float, parameter controlling the Beta distribution. See section "Leaf Angle Distribution functions" for details.

nu

a float, parameter controlling the Beta distribution. See section "Leaf Angle Distribution functions" for details.

Examples

if (FALSE) {
# plot G(theta) for planophile leaf angle distribution function
AMAPVox::plotG(pdf = "planophile")
# plot G(theta) for every distributions
AMAPVox::plotG()
}