Skip to content
Prev 173432 / 398502 Next

Date frame

It all depends on what you are going to do with the data.  What you
want to do can be accomplished with 'list', but probably not
dataframes.  So what is the problem you are trying to solve?  Here is
an example of how you can create a list with the information you want:
+ session_1:     14:36:10            14:40:44
+ session_2:     14:40:47           14:41:47
+ session_3:     14:36:10            14:40:44
+ session_4:     14:40:47           14:41:47
+ session_5:     14:36:10            14:40:44
+ session_6:     14:40:47           14:41:47"), header=TRUE)
$starting_time
[1] 14:36:10 14:40:47 14:36:10 14:40:47 14:36:10 14:40:47
Levels: 14:36:10 14:40:47

$Ending_time
[1] 14:40:44 14:41:47 14:40:44 14:41:47 14:40:44 14:41:47
Levels: 14:40:44 14:41:47

$seq
$seq[[1]]
 [1] 4 3 0 3 4 1 0 1 4 3 4 3 4

$seq[[2]]
[1] 3 4 1 2

$seq[[3]]
NULL

$seq[[4]]
     [,1] [,2] [,3] [,4]
[1,]    0    0    0    0
[2,]    0    0    0    0
[3,]    0    0    0    0
[4,]    0    0    0    0
On Wed, Mar 11, 2009 at 8:49 AM, Tammy Ma <metal_licaling at live.com> wrote: