Here I have two data files with model parameters and RMSEs computed for them. I would like to get those RMSEs plotted for each model separately with the model also displayed on it.
Please help.
Data file 1:
20 ! # models
1 0.1 ! Theta inc.
3 4 7 ! Approximations
2 ! # layers
GK ! model name
1.0 1.5 ! X-axis values (length varies for other models)
1.0 1.5 ! Y-axis values (length varies for other models)
2
GK_MOD1
1.0 1.5
1.5 1.0
4
Song
2.0 3.0 3.5 4.0
2.5 1.0 0.8 1.3
6
Causse
1.5 1.8 1.9 2.0 2.1 2.2
0.25 0.40 0.60 0.20 0.50 0.55
...
...
Data file 2 (reformatted):
# TKfull GKfull Padefull_3 Padefull_7 TK1 Pade1_3 Pade1_7 Pade2_3 Pade2_7 GK1 Pade3_3 Pade3_7 GK2 PadeEnd_3 PadeEnd_7 GKEnd
GK 0.071 0.028 0.025 0.156 0.023 0.004 0.045 0.012 0.232 0.013 0.090 0.492 0.064 0.064 0.384 0.046
GK_MOD1 0.055 0.030 0.053 0.156 0.012 0.008 0.036 0.050 0.185 0.025 0.169 0.497 0.107 0.125 0.375 0.075
GK_MOD2 0.132 0.042 0.081 0.209 0.035 0.006 0.050 0.051 0.277 0.036 0.267 0.625 0.116 0.192 0.484 0.079
GK_MOD3 0.261 0.067 0.316 0.267 0.066 0.021 0.078 0.138 0.426 0.063 1.137 0.855 0.161 0.810 0.662 0.106
Song 0.082 0.045 0.042 0.163 0.021 0.005 0.027 0.028 0.151 0.050 0.130 0.486 0.156 0.094 0.360 0.106
Song_MOD1 0.087 0.049 0.069 0.171 0.013 0.006 0.025 0.037 0.148 0.051 0.216 0.520 0.175 0.155 0.382 0.120
Song_MOD2 0.109 0.048 0.028 0.179 0.021 0.005 0.030 0.024 0.170 0.048 0.084 0.527 0.161 0.062 0.391 0.110
Song_MOD3 0.073 0.043 0.029 0.145 0.017 0.003 0.024 0.018 0.134 0.049 0.092 0.440 0.156 0.066 0.325 0.105
Cooper_basin 0.031 0.034 0.030 0.105 0.012 0.003 0.016 0.018 0.085 0.055 0.089 0.306 0.139 0.065 0.228 0.093
Cooper_basin_MOD1 0.035 0.017 0.024 0.093 0.016 0.006 0.031 0.034 0.151 0.042 0.083 0.297 0.076 0.063 0.236 0.047
Cooper_basin_MOD2 0.049 0.032 0.032 0.134 0.013 0.005 0.029 0.030 0.150 0.040 0.102 0.412 0.111 0.076 0.312 0.077
Causse2000_1 0.030 0.019 0.020 0.093 0.012 0.004 0.024 0.022 0.121 0.035 0.062 0.286 0.081 0.047 0.219 0.053
Causse2000_2 0.068 0.038 0.014 0.146 0.017 0.001 0.028 0.007 0.151 0.043 0.047 0.444 0.130 0.033 0.332 0.089
Causse2000_3 0.042 0.036 0.023 0.083 0.015 0.005 0.008 0.023 0.156 0.049 0.065 0.195 0.132 0.049 0.177 0.089
Causse2000_4 0.039 0.046 0.046 0.109 0.016 0.003 0.024 0.011 0.049 0.053 0.137 0.318 0.158 0.099 0.230 0.108
Dunkin_1973 0.653 0.641 0.656 0.686 0.703 0.703 0.725 0.239 0.471 0.059 0.434 0.632 0.140 0.353 0.557 0.093
Dunkin_1973_MOD1 0.708 0.624 0.708 0.709 0.694 0.692 0.692 0.760 0.761 0.042 0.785 0.792 0.104 0.773 0.777 0.070
Dunkin_1973_MOD2 0.043 0.029 0.026 0.118 0.050 0.004 0.025 0.023 0.130 0.039 0.082 0.357 0.105 0.061 0.270 0.072
Dunkin_1973_MOD3 0.012 0.014 0.005 0.066 0.011 0.001 0.022 0.002 0.102 0.032 0.017 0.210 0.070 0.012 0.165 0.046
Random 0.033 0.039 0.042 0.114 0.013 0.001 0.017 0.014 0.096 0.047 0.138 0.361 0.140 0.099 0.268 0.097
Transposed the Data file 2 using this code then through the following script, plotted the RMSE values as shown in the image.
Gnuplot script
set terminal png size 800,500 enhanced font "Helvetica,20"
set output 'output.png'
red = "#FF0000"; green = "#00FF00"; blue = "#0000FF"; skyblue =
"#87CEEB";
set yrange [0:2]
set style data histogram
set style histogram cluster gap 1
set style fill solid
set boxwidth 0.9
set xtics format ""
set grid ytics
set xtics rotate by 90 right
set title "A Sample Bar Chart"
plot "RMSE_transpose.dat" using 2:xtic(1) title "GK " linecolor rgb red
The inset figure in the image is hand-drawn, which is the model itself as shown in Data file 1.
Help needed in:
How to get such a plot from both the Data files for all the models, viz., GK, GK_MOD1, GK_MOD2, etc., with individual image having model name as the file name, such as, GK_RMSE.png, GK_MOD1_RMSE.png, etc.
How to display the Y-axis values on top of each bar?
What should I modify in the Gnuplot script to get row-wise and column-wise plots from the Data file 2?

