search for: scaled_features

Displaying 1 result from an estimated 1 matches for "scaled_features".

2010 May 26
1
Linear Discriminant Analysis in R
...0 0 1 1 0 0 1 0 0 0 0 0 0 0 0 thus in code I have the following: library(MASS) vowel_features <- read.table(file = "mappings_for_vowels.txt") mask_features <- read.table(file = "3dmaskdump_ICA_37_Combined.txt") #scale the mask_features file scaled_features <- scale(mask_features, center = FALSE, scale = apply(abs(mask_features, 2, median))) #input vowel feature, lda lda(ROI_values ~ mappings_for_vowels[15]...) not sure what is the correct approach to use for lda any pointers would be greatly appreciated thanks again all! Cobbler -- View th...