Displaying 1 result from an estimated 1 matches for "sub_seatm3".
2008 Sep 30
0
Root-Mean-Square(RMS) Difference
...ology of RMS difference (all Jan months, all
Feb months, all March months,.............,all Dec months),
So I am computing like following:
time_span <- file[(file$mo==1),] # for 'Jan' month (similarly for other
months)
time_span
sub_seaobs <- (time_span$observed. residual)
sub_seaobs
sub_seatm3 <- (time_span$modeled.residual)
sub_seatm3
sqrt(sum((sub_seaobs-sub_seatm3)^2)/n) # 'n' is number of observation in
particular month
QUESTION:
I want to know if I am doing right and is it best way of computing
clomatology of Root-Mean-Square difference between two data sets.
--
Yoges...