Displaying 2 results from an estimated 2 matches for "alg3".
Did you mean:
alg
2009 Mar 27
0
read.table on long lines buggy (PR#13626)
...some trouble before uncovering this one from reading a bigger file I had!
Please take care of this one or suggest me safer ways of working with long
lines!
Thanks,
Mani
> cat(file="tst1", "a:15S_RRNA, 21S_RRNA, AAC1, AAC3\nb:AAP1, ACN9, ALG1, ALG11,
ALG12, ALG13, ALG14, ALG2, ALG3, ALG5, ALG6, ALG7, ALG8, ALG9, AMS1, ANP1, ARA1,
ATH1, BCH1, BCH2, BMH1, BMH2, BNI4, BUD7, CAX4, CDC19, CHS3, CHS5, CHS6, CHS7,
CIT2, CTS1, CWH41, DDP1, DIE2, DIP5, DLD1, DOG1, DOG2, DPM1, ELM1, ENO1, ENO2,
EOS1, ERD1, EXG1, FBA1, FBP1, FBP26, FDH1, FKS1, GAC1, GAL1, GAL10, GAL2, GAL3,
GAL4, GAL7,...
2010 Oct 06
0
methodology question : is anova appropriate for these data?
Representative small sample of data:
algorithmID <- factor(c(rep('alg1',4),rep('alg2',4),rep('alg3',4)))
threshold <- factor(rep(c(.45,.50,.55,.60),times=3))
score <- c(30,32,31,30,10,12,13,14,22,21,20,24)
d <- data.frame(algorithmID,threshold,score)
AlgorithmID is the name of each algorithm; threshold is the value of a parameter used by the algorithm that produces the score; the s...