search for: lda_result

Displaying 4 results from an estimated 4 matches for "lda_result".

Did you mean: ldap_result
2011 Jun 21
1
(no subject)
...header=TRUE) > # Get groups information > groups<-data[,1] > # Remove groups for data processing > lda_data<-data[,-1] > # Replace any missing values (see Notes) > lda_data[is.na(lda_data)]<-0.5*(min(lda_data,na.rm=TRUE)) > > # > # Perform the LDA > # > lda_result<-lda(lda_data,groups) Error in lda.default(x, grouping, ...) : variables 1 3 5 8 10 15 17 20 27 29 34 appear to be constant within groups > > # > # Generate the figures (on screen) > # > # Image generation - function definition > pic_onscr<-function(matrix, tit...
2011 Jun 09
1
what is the mistake?? the coding still not function. no result display
...header=TRUE) > # Get groups information > groups<-data[,1] > # Remove groups for data processing > lda_data<-data[,-1] > # Replace any missing values (see Notes) > lda_data[is.na(lda_data)]<-0.5*(min(lda_data,na.rm=TRUE)) > > # > # Perform the LDA > # > lda_result<-lda(lda_data,groups) Error in lda.default(x, grouping, ...) : variables 1 3 5 8 10 15 17 20 27 29 34 appear to be constant within groups > > # > # Generate the figures (on screen) > # > # Image generation - function definition > pic_onscr<-function(matrix, tit...
2011 Jun 09
0
(no subject)
...ar=c(7,4,4,2), # plot margins (b,l,t,r) + > las=1) # horizontal labels + plot(matrix, # data to plot + > cex=cex_val, # font size + dimen=2 # dimensions to plot + > ) + title(main=title) # title of plot + } >> # Plot LDA scores with sample names >> pic_onscr(lda_result,"Linear Discriminant Analysis") > Error in plot(matrix, cex = cex_val, dimen = 2) : error in > evaluating the argument 'x' in selecting a method for > function 'plot': Error: object 'lda_result' not found >> # For plotting with larger...
2011 Jun 20
2
(no subject)
HELLO, anybody... could you help me to check the below coding for volcano. what is the mistake? what the plot could not display? # volcano_plot.r # # Author: Amsha Nahid, Jairus Bowne, Gerard Murray # Purpose: Produces a volcano plot # # Input: Data matrix as specified in Data-matrix-format.pdf # Output: Plots log2(fold change) vs log10(t-test P-value) # #