Displaying 2 results from an estimated 2 matches for "fragebogen".
2004 Jun 01
1
advanced dist
Hi there.
I have now found that dist() does what I want in a specific case.
But I have (out of many fields) in my Fragebogen.data file:
Vpn Code Family Test
1 X1 m 45
2 X1 t 58
3 X2 m 44
4 X2 t 43
...
When I now do:
Fbg <- read.table("Fragebogen.data", header=TRUE)
dist(Fbg['Test'])
I have the distances between everyone to everyone.
Now I want to have the mothers (m in Family) at the y axis and th...
2004 May 27
4
Sorting Data?
Hello,
Im reading through some manuals, but I cannot find my answer.
I have a file containing many data:
Vpn Code Family Age F1 F2 ... F17
1 1 M 46 1 2 ... 1
2 1 D 18 3 2 ... 4
3 2 M 50 3 3 ... 3
...
and so on.
Now I can read it by:
F = read.table("file", header=T)
but now I want to seperate the mothers (M) and daugthers (D) of the
family with all the data in all other fields.