groups: Identify groups of persons with identical competence...

Description Usage Arguments Value Author(s) References See Also Examples

Description

This method uses the agglomerative clustering provided by agnes to find those sets of persons that occupy a competence position in close vicinity to each other. The proximity thereby has to be above the domain's identity threshold to be clustered together.

Set identityThreshold to relax (or raise) the threshold above which identity is assumed.

Usage

1
groups(x, ...)

Arguments

x

a HumanResourceManager.

...

additional parameters to be passed on to findGroups.

Value

References to freshly created Person objects holding the group cluster centroids.

Author(s)

Fridolin Wild <wild@brookes.ac.uk>

References

Fridolin Wild (2016): Learning Analytics in R with SNA, LSA, and MPIA, Springer:Berlin.

See Also

More detailed information: findGroups, Visualiser, Domain

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
dmgr = DomainManager()
data(generic.domain)
dmgr$add(d, title="generic")

ppl = HumanResourceManager(dmgr)

fridolin = ppl$add("fridolin")
fridolin$write("this demonstrates skills in business.", label="example")
terms(fridolin)

max = ppl$add("maximilian")
max$write("shows skills in business")

jo = ppl$add("jo")
jo$write("risk assessment is another topic")

groups(ppl)

mpia documentation built on May 2, 2019, 4:18 p.m.