blocksort: Sorts the blocks in ascending numbering

View source: R/blocksort.R

blocksortR Documentation

Sorts the blocks in ascending numbering

Description

This function sorts all items in a block into ascending order.

Usage

blocksort(blocks)

Arguments

blocks

A matrix defining the blocks of the model. The number of rows must be the number of blocks, each row represents a block and contains the item numbers. The number of columns represent the number of items per block.

Value

Returns a matrix consisting of the blocks where all items per blocks are sorted in ascending order.

Examples


# Define 30 items divided by ten triplets as blocks
blocks <- matrix(c(1:30), ncol = 3)

# sort the blocks
blocksort(blocks)


ThurMod documentation built on Sept. 19, 2023, 5:07 p.m.