StakeholdClassif: StakeholdClassif

Description Usage Arguments Details Value Author(s) References Examples

View source: R/kod_do_11.R

Description

Classifies stakeholder groups and suggests communication strategies

Usage

1

Arguments

BenefCostTest

the result of a Student's t-test (with H0 stating that the mean of benefits and the mean of costs are equal). The $BenefCostTest from the BenefCost function should be used

CollabPotential

the potential for collaboration. The $Mean or the $Fra from the CollabPotential function should be used

AttribIdent

identified stakeholder attributes. The $Mean or the $Fra from the AttribIdent function should be used

Details

The function first classifies stakeholder groups into categories, as described by Mitchell, Agle and Wood (1997). It then determines their attitudes ("supportive", "non-supportive", "mixed", "neutral", "insignificant") and, with the potential for collaboration taken into account, suggests a communication strategy vis-a-vis a particular stakeholder group

Value

The number of stakeholder groups x 3 data frame. The first column indicates stakeholder classification. The second column shows stakeholder attitudes. The third column suggests a communication strategy

Author(s)

Sebastian Susmarski, Lech Kujawski, Anna Zamojska, Piotr Zientara

References

Mitchell, Agle and Wood (1997)

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
# first import DataExp
data(DataExp)
# then execute PrelCalc(), RespVerif(), AttibIdent(), BenefCost()
PrelCalcExp=PrelCalc(data=DataExp, NoAtt=c(2,11,13,15),NoPow=c(3,8,14,16),
NoUrg=c(4,6,10,12),NoLeg=c(5,7,9,17),NoBen=18:22,NoCos=23:27)
RespVerifExp=RespVerif(CountResponses=PrelCalcExp$CountResponses,
NoStakeholders=PrelCalcExp$NoStakeholders)
AttribIdentExp=AttribIdent(TestedResponses=RespVerifExp,
NoAttrib=PrelCalcExp$NoAttrib, NoStakeholders=PrelCalcExp$NoStakeholders,
NameStakeholders=PrelCalcExp$NameStakeholders)
CollabPotentialExp=CollabPotential(AttribIdent=AttribIdentExp)
BenefCostExp=BenefCost(CountResponses=PrelCalcExp$CountResponses)
# StakeholdClassif()
StakeholdClassifByMean=StakeholdClassif(BenefCostTest=BenefCostExp$BenefCostTest,
CollabPotential=CollabPotentialExp$Mean,AttribIdent=AttribIdentExp$Mean)
StakeholdClassifByFraction=StakeholdClassif(BenefCostTest=BenefCostExp$BenefCostTest,
CollabPotential=CollabPotentialExp$Fra,AttribIdent=AttribIdentExp$Fra)
StakeholdClassifByMean
StakeholdClassifByFraction

StakeholderAnalysis documentation built on May 2, 2019, 3:44 a.m.