complete != combined
This commit is contained in:
parent
77e4e9b61b
commit
c896a04433
1 changed files with 3 additions and 3 deletions
|
@ -141,8 +141,8 @@ makeplot = function(x, # the DataFrame to plot
|
|||
combined_training_genes = '999' # used only for the info box
|
||||
){
|
||||
plot_data = x[x$resampling==resampler,]
|
||||
# y_coord_min = min(plot_data[selection], na.rm=TRUE)
|
||||
y_coord_min = min(plot_data[selection])
|
||||
y_coord_min = min(plot_data[selection], na.rm=TRUE)
|
||||
#y_coord_min = min(plot_data[selection])
|
||||
|
||||
if (y_coord_min > 0) {
|
||||
y_coord_min = 0
|
||||
|
@ -155,7 +155,7 @@ makeplot = function(x, # the DataFrame to plot
|
|||
"\nTrain/Test Target Ratio: ", metadata$n_trainingY_ratio, "/", metadata$n_testY_ratio,
|
||||
"\nResampling: ", metadata$resampling,
|
||||
"\nFeatures: ", metadata$n_features,
|
||||
"\nGenes Trained: ", combined_training_genes,
|
||||
"\nGenes Trained: ", combined_training_genes
|
||||
#"\nTest Gene: ", gene
|
||||
)
|
||||
} else {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue