Description Usage Arguments Value See Also Examples
This function allows you to fit the ARZIMM.
1 2 3 4 5 6 7 8 9 10 11 |
phy |
A phyloseq-class experiment-level object example data. See |
Varname |
a vector of character string indicating the taxa names in the non-zero auto-regressive model |
Conname |
a vector of character string indicating the concomitant variable names in the zero state logit model |
Covname |
a vector of character string indicating the covariate names in the non-zero auto-regressive model |
IDname |
a character string indicating the subject ID. Default is ID |
Tname |
a character string indicating the time variable. Default is Time |
fdata |
a data frame containing all variables to be analysized |
family |
a character string indicating the distribtuion. default is Poisson |
... |
See |
an object of class "ARZIMMObject"
is returned, which is a list with the ingredients of fit.
nwtable |
the matrix of network table of fit |
mseest |
a list of mean square error:
|
paralist |
a list of parameter estimates:
|
runtime |
running time of the program |
datalist |
an object of class |
resultall |
a list of parameter estimates of the fits with ingredients of the lambda |
bootparapval |
a list of p values obtain via bootstrap with componenets:
|
tunlist |
the values of parameters used in the fits with components:
|
parasetup |
a list of parameters used to initial the ARZIMM program with components:
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | data(phyExample)
Varname=colnames(otu_table(phyExample))
Conname=colnames(sample_data(phyExample))[1:6]
Tname=colnames(sample_data(phyExample))[7]
IDname=colnames(sample_data(phyExample))[8]
ARZIMMresult=ARZIMM::ARZIMM(phyExample,Varname = Varname,Conname = Conname,
IDname = IDname,Tname = Tname,bootpara=list(bootpval=TRUE,nboot=5))
data(sampledata)
Varname=colnames(sampledata)[1:20]
Conname=colnames(sampledata)[21:26]
Tname=colnames(sampledata)[27]
IDname=colnames(sampledata)[28]
ARZIMMresult=ARZIMM::ARZIMM(phy=NULL,Varname = Varname,Conname = Conname,fdata=sampledata,
IDname = IDname,Tname = Tname,bootpara=list(bootpval=TRUE,nboot=5))
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.