-
Notifications
You must be signed in to change notification settings - Fork 25
/
target6.m
96 lines (85 loc) · 3.63 KB
/
target6.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
% How to create a target diagram with overlaid markers
%
% A sixth example of how to create a target diagram given one set of
% reference observations and multiple model predictions for the quantity.
%
% This example is a variation on the third example (target3) where now a
% fourth data point having a negative bias is overlaid on an existing
% target diagram that already has 3 data points with positive bias. It is
% chosen to have the first 3 data points appear in red while the fourth
% data point is displayed in blue.
%
% All functions in the Skill Metrics Toolbox are designed to only work with
% one-dimensional arrays, e.g. time series of observations at a selected
% location. The one-dimensional data are read in as data structures via a
% mat file. The latter are stored in data structures in the format:
% ref.data, pred1.data, pred2.dat, and pred3.dat. The plot is written to a
% file in Portable Network Graphics (PNG) format.
%
% The reference data used in this example are cell concentrations of a
% phytoplankton collected from cruise surveys at selected locations and
% time. The model predictions are from three different simulations that
% have been space-time interpolated to the location and time of the sample
% collection. Details on the contents of the data structures (once loaded)
% can be obtained by simply entering the data structure variable name at
% the command prompt, e.g.
% >> ref
% ref =
% data: [57x1 double]
% date: {57x1 cell}
% depth: [57x1 double]
% latitude: [57x1 double]
% longitude: [57x1 double]
% station: [57x1 double]
% time: {57x1 cell}
% units: 'cell/L'
% jday: [57x1 double]
% Author: Peter A. Rochford
% Symplectic, LLC
% www.thesymplectic.com
% Close any previously open graphics windows
close all;
% Set the figure properties (optional)
set(gcf,'units','inches','position',[0,10.0,14.0,10.0]);
set(gcf, 'DefaultLineLineWidth', 1.5); % linewidth for plots
set(gcf,'DefaultAxesFontSize',18); % font size of axes text
% Read in data from a mat file
load('target_data.mat');
% Calculate statistics for target diagram
target_stats1 = target_statistics(pred1,ref,'data');
target_stats2 = target_statistics(pred2,ref,'data');
target_stats3 = target_statistics(pred3,ref,'data');
% Store statistics in arrays
bias = [target_stats1.bias; target_stats2.bias; target_stats3.bias];
crmsd = [target_stats1.crmsd; target_stats2.crmsd; target_stats3.crmsd];
rmsd = [target_stats1.rmsd; target_stats2.rmsd; target_stats3.rmsd];
% Specify labels for points in a cell array (M1 for model prediction 1,
% etc.).
label = {'M1', 'M2', 'M3'};
% Produce the target diagram
%
% Label the points and change the axis options. Increase the upper limit
% for the axes, change color and line style of circles. Increase
% the line width of circles.
%
% For an exhaustive list of options to customize your diagram, please
% call the function without arguments:
% >> target_diagram
[hp, ht, axl] = target_diagram(bias,crmsd,rmsd, ...
'markerLabel',label, 'markerLabelColor', 'r', ...
'ticks',-60.0:10.0:60.0,'limitAxis',50.0, ...
'circleLineSpec','-.b','circleLineWidth',1.0);
% Calculate a negative uRMSD for one of the data values.
pred3.data = -pred3.data;
target_stats3 = target_statistics(pred3,ref,'data');
bias = target_stats3.bias;
crmsd = target_stats3.crmsd;
rmsd = target_stats3.rmsd;
% Overlay new data point (blue) on existing diagram
label = {'M4'};
target_diagram(bias,crmsd,rmsd, ...
'overlay','on', ...
'markerLabel',label, 'markerLabelColor', 'b', 'markerColor','b');
% Write plot to file
writepng(gcf,'target6.png');