Goodness of communication: Difference between revisions

From Opasnet
Jump to navigation Jump to search
(first draft)
 
(rcode updated and now it works)
Line 1: Line 1:
{{method|moderator=Jouni|stub=Yes}}
{{method|moderator=Jouni|stub=Yes}}
==Question==
How to measure the performance or goodness of communication about an [[open assessment]]?
==Answer==
<math>
GC = \frac{Re*Av*Us*Ac}{Ef}
</math>


Explanations:
Explanations:
Line 10: Line 20:
* Goodness of communication (GC): overall outcome divided by resources used
* Goodness of communication (GC): overall outcome divided by resources used


<math>
==Rationale==
GC = \frac{Re*Av*Us*Ac}{Ef}
</math>


Drafts of estimates for calculations. The idea is to test whether a quantitative approach makes sense, i.e. whether it is possible to give plausible answers as parameters in the calculation.


<t2b index="Method,Situation,Property" obs="Result" unit="P,o,h">
<t2b index="Method,Situation,Property" obs="Result" unit="P,o,h">
Line 36: Line 45:
Opasnet|Within society|Coherence|0
Opasnet|Within society|Coherence|0
Opasnet|Within society|Relevance |0.01
Opasnet|Within society|Relevance |0.01
Opasnet|Within society|Availability|500000
Opasnet|Within society|Availability|50000
Opasnet|Within society|Usability|1
Opasnet|Within society|Usability|1
Opasnet|Within society|Acceptability|0.05
Opasnet|Within society|Acceptability|0.05
Line 46: Line 55:
library(xtable)
library(xtable)


data <- op_baseGetData("opasnet_base", "Op_enXXXX")[, -c(1,2)]
data <- op_baseGetData("opasnet_base", "Op_en5441")[, -c(1,2,7)]
data <- reshape(data, timevar = "Property", idvar = data[, c("Method", "Situation"), times = "Result", direction = "wide"])
 
data <- reshape(data, timevar = "Property", idvar = c("Method", "Situation"), v.names = "Result", direction = "wide")
colnames(data) <- c("Method", "Situation", "Calibration", "Informativeness", "Coherence", "Relevance", "Availability", "Usability", "Acceptability", "Efficiency")
 
data$GC <- data$Relevance * data$Availability * data$Usability * data$Acceptability / data$Efficiency


GC <- data$Relevance * data$Availability * data$Usability * data$Acceptability / data$Efficiency
print(xtable(data), type = 'html')
print(xtable(GC), type = 'html')
</rcode>
</rcode>

Revision as of 13:46, 27 December 2011


Question

How to measure the performance or goodness of communication about an open assessment?

Answer

Failed to parse (SVG (MathML can be enabled via browser plugin): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle GC = \frac{Re*Av*Us*Ac}{Ef} }

Explanations:

  • Calibration, Informativeness, and Coherence: These are not relevant for the assessment of communication methods and are therefore not used.
  • Relevance (Re): P(receiver is interested in the content of communication)
  • Availability (Av): number of people hearing the content N(people)
  • Usability (Us): utility of content (in onors) to a user finding it interesting U(content)
  • Acceptability (Ac): P(content and production are acceptable in user's context)
  • Efficiency (Ef): Sum of costs (in working hours): Sum(talking, reading, using content)
  • Goodness of communication (GC): overall outcome divided by resources used

Rationale

Drafts of estimates for calculations. The idea is to test whether a quantitative approach makes sense, i.e. whether it is possible to give plausible answers as parameters in the calculation.

Goodness of communication: Difference between revisions(P,o,h)
ObsMethodSituationPropertyResult
1Mouth-to-mouth communicationBetween scientistsCalibration0
2Mouth-to-mouth communicationBetween scientistsInformativeness0
3Mouth-to-mouth communicationBetween scientistsCoherence0
4Mouth-to-mouth communicationBetween scientistsRelevance 0.1
5Mouth-to-mouth communicationBetween scientistsAvailability5
6Mouth-to-mouth communicationBetween scientistsUsability1
7Mouth-to-mouth communicationBetween scientistsAcceptability0.5
8Mouth-to-mouth communicationBetween scientistsEfficiency0.5
9OpasnetBetween scientistsCalibration0
10OpasnetBetween scientistsInformativeness0
11OpasnetBetween scientistsCoherence0
12OpasnetBetween scientistsRelevance 0.1
13OpasnetBetween scientistsAvailability100
14OpasnetBetween scientistsUsability1
15OpasnetBetween scientistsAcceptability0.005
16OpasnetBetween scientistsEfficiency0.5
17OpasnetWithin societyCalibration0
18OpasnetWithin societyInformativeness0
19OpasnetWithin societyCoherence0
20OpasnetWithin societyRelevance 0.01
21OpasnetWithin societyAvailability50000
22OpasnetWithin societyUsability1
23OpasnetWithin societyAcceptability0.05
24OpasnetWithin societyEfficiency0.5

+ Show code