The hardware and bandwidth for this mirror is donated by dogado GmbH, the Webhosting and Full Service-Cloud Provider. Check out our Wordpress Tutorial.
If you wish to report a bug, or if you are interested in having us mirror your free-software or open-source project, please feel free to contact us at mirror[@]dogado.de.
This vignette walks through Leadership Trait Analysis (LTA) with leadeR, from computing trait scores to classifying leaders into Hermann’s typology.
get_lta() computes all eight LTA traits in one call and
returns a one-row tibble per speech. Set bootstrap = TRUE
to obtain bootstrap means and delta-method variances for the trait
proportions.
res_lta <- data.table::rbindlist(
lapply(c(jfk1, jfk2, jfk3), function(x)
get_lta(own_entity = own_ent, text = x, bootstrap = TRUE, B = B))
)
print(res_lta)The output includes:
meanP, varP, meanOP,
varOP)Pp, varPp, D,
varD, C, varC, Ta,
varTa, Ss, varSs,
Na, varNa, B,
varB)The seven trait proportions are:
| Abbreviation | Trait |
|---|---|
Pp |
Need for power |
B |
Belief in ability to control events |
C |
Conceptual complexity |
Ss |
Self-confidence |
Ta |
Task orientation |
D |
Distrust |
Na |
Nationalism (in-group bias) |
You can also compute traits one at a time:
res_nat <- get_nat(own_entity = own_ent, text = jfk1, bootstrap = TRUE, B = B)
res_ctrl <- get_ctrl(own_entity = own_ent, text = jfk1, bootstrap = TRUE, B = B)
res_power <- get_power(own_entity = own_ent, text = jfk1, bootstrap = TRUE, B = B)
res_aff <- get_aff(own_entity = own_ent, text = jfk1, bootstrap = TRUE, B = B)
res_dist <- get_dist(own_entity = own_ent, text = jfk1, bootstrap = TRUE, B = B)
res_complex <- get_complex(text = jfk1, bootstrap = TRUE, B = B)
res_conf <- get_conf(text = jfk1, bootstrap = TRUE, B = B)
res_task <- get_task(text = jfk1, bootstrap = TRUE, B = B)Using the per-speech LTA traits, type_lta() aggregates
scores across speeches and classifies the leader into Hermann’s
typology.
The way speech-level traits are aggregated matters for
classification. type_lta() supports two approaches:
Simple mean
(precision_weighted = FALSE, the default): Takes the
arithmetic mean of each trait across speeches. All speeches contribute
equally regardless of how precisely each trait was estimated.
Precision-weighted mean
(precision_weighted = TRUE): Uses inverse-variance
weighting via random-effects meta-analysis (metafor::rma()
with REML). Speeches with lower bootstrap variance (i.e., more precisely
estimated traits) receive higher weight. This requires that
get_lta() was run with bootstrap = TRUE so
that the variance columns (varPp, varB, etc.)
are available.
type_lta() classifies the leader along three
dimensions:
Constraint (Respect vs. Challenge): Based on need
for power (Pp) and belief in control (B). A
leader who scores below both thresholds respects constraints; otherwise,
they challenge constraints.
Openness (Open vs. Closed): Based on conceptual
complexity (C) and self-confidence (Ss). A
leader is open to information if complexity exceeds self-confidence, or
if both exceed their respective high thresholds.
Motivation toward world (four categories): Based on
distrust (D) and nationalism (Na):
| Distrust | Nationalism | Motivation |
|---|---|---|
| Low | Low | Cooperative |
| Low | High | Cooperative (in-group bias) |
| High | Low | Competitive (out-group focus) |
| High | High | Competitive |
Constraint, openness, and task orientation (Ta) map to
one of eight leadership styles:
| Constraint | Openness | Task orientation | Style |
|---|---|---|---|
| Challenge | Closed | Problem | Expansionistic |
| Challenge | Closed | Relationship | Evangelistic |
| Challenge | Open | Problem | Incremental |
| Challenge | Open | Relationship | Charismatic |
| Respect | Closed | Problem | Directive |
| Respect | Closed | Relationship | Consultative |
| Respect | Open | Problem | Reactive |
| Respect | Open | Relationship | Accommodative |
These binaries (installable software) and packages are in development.
They may not be fully stable and should be used with caution. We make no claims about them.
Health stats visible at Monitor.