RIpop: Flowering phenology index of Mahoro (2002) at poplulation...

Description Usage Arguments Details Value Note Author(s) References See Also Examples

View source: R/RIpop.r

Description

Relative to the formula of Mahoro (2002),we suggested the reference object (b) calculated in a polulation was better than in a individua. It measures the rank order of flowering for individual plants within a population.

Usage

1
RIpop(dd, pop, ind)

Arguments

dd

Flowering data.

pop

Group of Population.

ind

ID of individual.

Details

ri=sum(aij/bi);(j=1:p)

Value

i

individuals

j

time during the flowering from beginning to pike of flowering p

r

the rank of each individual

aij

flowers that had already open in the individual by the jth census day

bi

the total number of flowers opening in the individual during the season

xij

xij=aij/bi

Note

nothing

Author(s)

WANG,XIE

References

[1]Mahoro, S. (2002). Individual flowering schedule, fruit set, and flower and seed predation in Vaccinium hirtum Thunb. (Ericaceae). Can. J. Bot. 80: 82-92.

See Also

nothing

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
a1=c(0,1,1,1,0,0,0)
a2=c(0,1,0,1,1,0,0)
a3=c(0,0,0,1,1,1,0)
a4=c(0,0,0,1,1,0,1)
pop=c("pop1","pop1","pop2","pop2")
ind=c(1,2,1,2)
dd=rbind(a1,a2,a3,a4)
colnames(dd)=c("D5/1","D5/2","D5/3","D5/4","D5/5","D5/6","D5/7")
C=RIpop(dd,pop,ind)
C

Example output

     R.length R.min R.max R.mean R.sd
pop1        2   1.5   1.5    1.5    0
pop2        2   1.5   1.5    1.5    0
$res
     R.length R.min R.max R.mean R.sd
pop1        2   1.5   1.5    1.5    0
pop2        2   1.5   1.5    1.5    0

$NO.of.ind
[1] 4

$aij
   pop      fls D5/1 D5/2 D5/3 D5/4 D5/5 D5/6 D5/7
1 pop1 pop1 - 1    0    1    1    1    0    0    0
2 pop1 pop1 - 2    0    1    0    1    1    0    0
3 pop2 pop2 - 1    0    0    0    1    1    1    0
4 pop2 pop2 - 2    0    0    0    1    1    0    1

$bij
     [,1]
pop1    2
pop2    2

$xij
   pop      fls D5/1 D5/2 D5/3 D5/4 D5/5 D5/6 D5/7
3 pop2 pop2 - 1    0  0.0  0.0  0.5  0.5  0.5  0.0
4 pop2 pop2 - 2    0  0.0  0.0  0.5  0.5  0.0  0.5
1 pop1 pop1 - 1    0  0.5  0.5  0.5  0.0  0.0  0.0
2 pop1 pop1 - 2    0  0.5  0.0  0.5  0.5  0.0  0.0

$R
  population individual   r
1       pop2   pop2 - 1 1.5
2       pop2   pop2 - 2 1.5
3       pop1   pop1 - 1 1.5
4       pop1   pop1 - 2 1.5

flower documentation built on May 1, 2019, 9:27 p.m.