Learn R Programming

POSTm (version 1.4)

print: Print the Primary Results of a post() Analysis

Description

Print the primary results of a post() analysis.

Usage

# S3 method for POST
print(x, ..., siglevel = 1)

Value

No return value, called to display key results.

Arguments

x

A POST object. The value object returned by a call to post()

...

Further arguments passed to or from other methods

siglevel

A numeric object. If < 1, shows only the OTUs for which the p-value is below the specified siglevel.

Examples

Run this code

data("POSTmData")

y <- as.integer(x = metadata[,"GC"] == "BV")
X <- metadata[,"mRace"]

result <- post(y = y, 
               X = X, 
               OTU = otu[,1:20], 
               tree = otutree,
               cValues = seq(0,0.05,by=0.01))

print(x = result)

Run the code above in your browser using DataLab