Learn R Programming

cheddar (version 0.1-636)

OrderCollection: Order a collection of communities

Description

Order a CommunityCollection

Usage

OrderCollection(collection, ..., decreasing=FALSE)

Arguments

collection

an object of class CommunityCollection.

the names of properties by which to order the communities.

decreasing

logical.

Value

A CommunityCollection.

See Also

CommunityCollection, order, CollectionCPS

Examples

Run this code
# NOT RUN {
data(pHWebs)
CollectionCPS(pHWebs, c('pH', 'NumberOfNodes'))

# Order by name
pHWebs.name <- OrderCollection(pHWebs, 'title')
CollectionCPS(pHWebs.name, c('pH', 'NumberOfNodes'))

# Order by decreasing pH
pHWebs.decreasing.pH <- OrderCollection(pHWebs, 'pH', decreasing=TRUE)
CollectionCPS(pHWebs.decreasing.pH, c('pH', 'NumberOfNodes'))

# Order by increasing diversity
pHWebs.increasing.S <- OrderCollection(pHWebs, 'NumberOfNodes')
CollectionCPS(pHWebs.increasing.S, c('pH', 'NumberOfNodes'))
# }

Run the code above in your browser using DataLab