R : Copyright 2003, The R Development Core Team Version 1.7.0 (2003-04-16) R is free software and comes with ABSOLUTELY NO WARRANTY. You are welcome to redistribute it under certain conditions. Type `license()' or `licence()' for distribution details. R is a collaborative project with many contributors. Type `contributors()' for more information. Type `demo()' for some demos, `help()' for on-line help, or `help.start()' for a HTML browser interface to help. Type `q()' to quit R. [Previously saved workspace restored] > library(MASS); > test <- read.table("madham.txt", sep=""); > train <- read.table("disputed.txt", sep=""); > cl <- factor(c(rep("m",14), rep("h",18))) > > test; V1 V2 V3 1 2.003 27.036 206.943 2 0.000 18.250 212.915 3 0.738 21.033 202.583 4 0.905 29.261 211.161 5 0.000 20.353 236.943 6 1.328 18.254 216.064 7 0.282 26.494 204.622 8 1.081 18.732 211.095 9 0.583 30.877 218.177 10 1.379 18.276 203.793 11 1.418 10.875 201.891 12 0.000 17.625 200.383 13 1.097 14.991 209.506 14 1.077 23.694 210.016 15 1.263 24.621 224.116 16 3.752 26.266 189.962 17 3.996 20.870 215.364 18 1.007 23.162 212.991 19 1.520 26.849 219.352 20 3.208 28.869 212.911 21 4.198 22.388 215.019 22 3.302 27.518 238.305 23 3.364 23.129 241.800 24 6.452 20.034 232.937 25 3.686 27.383 232.227 26 2.483 22.344 231.380 27 2.252 24.324 232.432 28 4.558 24.309 216.651 29 1.764 27.043 230.453 30 4.425 28.024 226.647 31 4.020 30.151 235.176 32 1.521 36.999 231.627 > train; V1 V2 V3 1 1.217 21.290 226.277 2 0.000 17.257 205.268 3 2.093 25.118 225.536 4 0.000 21.727 217.273 5 0.926 23.611 208.796 6 0.501 19.549 232.581 7 2.458 29.007 210.914 8 2.454 29.448 192.638 9 1.816 18.611 226.509 10 0.960 28.325 207.393 11 0.000 34.439 220.076 12 2.639 22.757 213.391 > cl; [1] m m m m m m m m m m m m m m h h h h h h h h h h h h h h h h h h Levels: h m > > z <- lda(test, cl); > > predict(z, train); $class [1] m m h m m m h h m m m h Levels: h m $posterior h m 1 0.268345960 0.7316540 2 0.001111399 0.9988886 3 0.850968072 0.1490319 4 0.012996979 0.9870030 5 0.056102720 0.9438973 6 0.093528588 0.9064714 7 0.879730892 0.1202691 8 0.541981181 0.4580188 9 0.384129903 0.6158701 10 0.163300082 0.8366999 11 0.350851909 0.6491481 12 0.719457952 0.2805420 $x LD1 1 0.63009650 2 2.75393587 3 -0.37550301 4 1.84876909 5 1.29670093 6 1.09466829 7 -0.46622609 8 0.20102338 9 0.43559703 10 0.86117887 11 0.48806720 12 -0.08229723 >