Displaying 3 results from an estimated 3 matches for "sugimoto".
2010 Jan 08
3
Print data frame as list including row/column name
...R1 0.0 0.0 1.0
R2 1.0 0.0 0.0
R3 0.0 0.0 0.0
R4 0.0 1.0 0.0
should be printed like
C1;R1;0.0
C2;R1;0.0
C3;R1;1.0
C1;R2;1.0
C2;R2;0.0
.....
Is there any existing solution out there or could somebody please give me a
hint on how to solve the problem?
Many thanks in advance,
I. Sugimoto
--
View this message in context: http://n4.nabble.com/Print-data-frame-as-list-including-row-column-name-tp1009409p1009409.html
Sent from the R help mailing list archive at Nabble.com.
2010 Oct 07
3
Create 2d table with mean of entries
Hi,
I have the following problem:
I have a list of entries with vehicles going from some places to others and
the time that they need.
e.g.
Vehicle Start End Time
1 A B 5
2 A C 4
3 A C 3
4 B A 6
5 B C 4
6 B C 6
7 C B 2
8 C B 4
9
2009 Sep 02
4
diff of two timestamps
Hi all,
I have the following problem: I have a csv-file consisting of timestamp
values (no dates), e.g.:
Timestamp1;Timestamp2;
05:24:43;05:25:05;
15:47:02;15:47:22;
18:36:05;18:36:24;
15:21:24;15:22:04;
I need a vector with the difference of the two timestamps, so I read the
data with the read.csv-function:
myObj <- read.csv("file.csv",header=TRUE,sep=";").
I have then