1 | EstimateH.3PG(N, Wa)
|
N |
|
Wa |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | ##---- Should be DIRECTLY executable !! ----
##-- ==> Define data, use random,
##-- or do help(data=index) for the standard data sets.
## The function is currently defined as
function (N, Wa)
{
k <- 4.8965 - 0.3972 * N/1000
if (N >= 12000) {
k <- 4.8965 - 0.3972 * 12000/1000
}
a <- 0.3482 + 0.0014 * N/1000
hdom <- k * Wa^a
return(hdom)
}
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.