Skip to contents

Make the initial grpNum list

Usage

makeGroupNum(numGp)

Arguments

numGp

integer value indicating the number of groups that should be formed from the list of IDs. Default is 1.

Value

Initial grpNum list

Examples

library(nprcgenekeepr)
## Create the initial grpNum list for three groups
grpNum <- makeGroupNum(numGp = 3L)
grpNum
#> [[1]]
#> [1] 1
#> 
#> [[2]]
#> [1] 2
#> 
#> [[3]]
#> [1] 3
#>