bkadulte: Adult Resilience Dataset From Bouake (Ivory Coast)

Description Usage Details Source References Examples

Description

This data set contains the variables from a resilience study of 117 adult people in the town of Bouake (Ivory Coast). A data frame with 117 observations on the following 22 variables.

Usage

1
data("bkadulte")

Details

In the context of the resilometric, the variables are all manifests variables and can be classify into five groups (five resilience dimensions):

SDH

sens of humor (senshum, creativite)

APS

pro-social attitude (communic, sociabilite, altruiste)

HRP

hability to solving problems (planific, solution, autonome)

SCI

sentiment of internal control (estime, confiance, favenir)

SPI

spirituality (optimisme, persever, religion)

Source

UMI Resilience (CIRES-IRD), observatory of resilience in Bouake (Ivory Coast)

References

COULIBALY Kpinna Tiekoura, Odilon Yapo M. ACHIEPO, Brou Konan Marcellin, Michel Babri. (2015). Resilometrical modeling of interactions in social resilience dimensions. International Journal of Computer Science Issues (IJCS ), Volume 12, Issue 4, July 2015. http://www.ijcsi.org/papers/IJCSI-12-4-149-155.pdf

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
## Load data
data(bkadulte)
str(bkadulte) 
bkmodele <- "
             ## modele de mesure 
              SDH =~ senshum+creativite 
              APS =~ communic+sociabilite+altruiste+relation
              HRP =~ planific+solution+autonome
              SCI =~ estime+confiance+favenir
              SPI =~ optimisme+persever+religion 
            ## interactions 
              HRP ~~ SDH+SCI
              SCI ~~ SDH
              APS ~~ SDH
              SPI ~~ APS+SCI
          "
## PLSPM estimation based on formula
bkmodes <- rep("A",5)  
bkres.plspm <- plspm.formula(Formula = bkmodele, Data = bkadulte, modes = bkmodes, 
                        plot.outer = TRUE, plot.inner = TRUE, scaled = FALSE)
## Computation plspm parameters only based on formula
bkres.param <- plspm.params(Formula = bkmodele, Data = bkadulte)
bkres.param$inner.mat
bkres.param$outer.list

plspm.formula documentation built on May 2, 2019, 9:32 a.m.