RTCAtimeline-class {RTCA} | R Documentation |
Time line of actions performed by the xCelligence device, supporting CRUD manipulations (create, read, update and delete).
Objects can be created by calls of the form
new("RTCAtimeline")
. However, it is more common to be called
implicitly by creating an instance of RTCA
object.
actionTrack
:Object of class "data.frame"
,
records action track in the form of two-column
data.frame
. The two columns must have the names
‘time’ and ‘action’.
timeUnit
:Object of class "character"
,
recording the unit of time points stored in the actionTrack
slot.
startTime
:Object of class "POSIXct"
, the
absolute time when the measurement started (at the time point
‘0’)
signature(object = "RTCAtimeline", time =
"numeric", action = "character")
: add action at the specified time
signature(object = "RTCAtimeline")
: get
the action track in the form of data.frame
signature(object = "RTCAtimeline", value
= "data.frame")
: assign the action track
signature(object = "RTCAtimeline", time = "numeric")
: get
action at the specified time
signature(object = "RTCAtimeline")
: order
the action track by the time
signature(object = "RTCAtimeline")
: undo all
editing of the object and reset it to the initial state
signature(object = "RTCAtimeline", time = "numeric")
: remove
the action at the specified time
signature(object = "RTCAtimeline")
: return the
time unit used by the actiont track
signature(object = "RTCAtimeline", value = "character")
: assign
the time unit used by the actiont track
signature(object = "RTCAtimeline")
: return
the starting POSIXct time of the experiment
signature(object = "RTCAtimeline", value =
"character")
: assign
the starting POSIXct time of the experiment
Jitao David Zhang jitao_david.zhang@roche.com
http://www.xcelligence.roche.com/ introduces xCelligence system.
http://www.roche-applied-science.com/proddata/gpip/3_8_9_1_1_1.html for brief introduction into RTCA
tl <- new("RTCAtimeline") show(tl)