EvidenceSet | R Documentation |
An EvidenceSet
is a
P4Message
which contains observable variables for
the Bayes net engine. It provides the observavbles associated with a
single scoring context.
EvidenceSet(uid, context, timestamp = Sys.time(), obs = list(), app =
"default", mess = "Accumulate", sender = "EI", processed = FALSE)
uid |
A character scalar giving unique identifier for the student/player. |
context |
A character scalar giving a unique identifier for the scoring context (often game level or task). |
timestamp |
The time at which the evidence was recorded (POSIXt format). |
obs |
A named list giving the observable variables. The names
and legal values correspond to the |
app |
A character scalar giving the globally unique identifier of the application. |
mess |
A character scalar giving the message associated with the observables. (Part of the Proc 4 procotol). |
sender |
A character scalar giving the identity of the process which created the message. This will usually be an evidence identification process. |
processed |
A flag that is set when the evidence set has been processed. |
Aside from the seqno
field, this is pretty much a
generic P4Message
. The data
of the
P4Message
is the observables
value fo the
EvidenceSet
.
An object of class EvidenceSet
.
Russell Almond
Class: EvidenceSet
Methods: observables
, seqno
,
parseEvidence
Using classes: StudentRecord
e1 <- EvidenceSet(uid="S1",app="Test",context="PPcompEM",
obs=list("CompensatoryObs"="Right"))
e2 <- EvidenceSet(uid="S1",app="Test",context="PPdurAttEM",
obs=list("Attempts"=2,"Duration"=38.3))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.