Custom ratio correlation plot
This commit is contained in:
+7
-4
@@ -575,8 +575,9 @@ my %handlers = (
|
||||
# Need to know which chart uses which datafile
|
||||
my @faults_charts = grep { /heatmap|scatter|sankey/ } @selected_charts;
|
||||
my @resultsdata_charts =
|
||||
grep { /result$|combined_comparison|ratio_comparison|ratio_correlation/ }
|
||||
@selected_charts;
|
||||
grep {
|
||||
/result$|combined_comparison|ratio_comparison|ratio_correlation/
|
||||
} @selected_charts;
|
||||
|
||||
my $faults_csv;
|
||||
my $resultsdata_csv;
|
||||
@@ -609,7 +610,8 @@ my %handlers = (
|
||||
}
|
||||
|
||||
my @combined_charts =
|
||||
grep { /combined|ratio_comparison|ratio_correlation/ } @selected_charts;
|
||||
grep { /combined|ratio_comparison|ratio_correlation/ }
|
||||
@selected_charts;
|
||||
my $print_experiments = join " ", @selected_experiments;
|
||||
my @path_experiments =
|
||||
map { "$local_archive_dir/$_" } @selected_experiments;
|
||||
@@ -621,7 +623,8 @@ my %handlers = (
|
||||
if defined $faults_csv && $chart =~ /heatmap|scatter|sankey/;
|
||||
push @r_args, $resultsdata_csv
|
||||
if defined $resultsdata_csv
|
||||
&& $chart =~ /result$|combined_comparison|ratio_comparison|ratio_correlation/;
|
||||
&& $chart =~
|
||||
/result$|combined_comparison|ratio_comparison|ratio_correlation/;
|
||||
system(@r_args);
|
||||
}
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user