Charts - Rain charts: Difference between revisions

From Cumulus Wiki
Jump to navigationJump to search
mNo edit summary
Line 8: Line 8:
#Yearly Rain statistics - Plotting the average, range and standard deviation for for the rainfall in every year
#Yearly Rain statistics - Plotting the average, range and standard deviation for for the rainfall in every year
#Yearly Rain statistics per month = plotting the average, range and standard deviation for for the rainfall in each month in every year
#Yearly Rain statistics per month = plotting the average, range and standard deviation for for the rainfall in each month in every year
#Rain versus EvapoTranspiration (EVT)
Below you will find an example image of each chart and an explanation of the origin of the numbers
Below you will find an example image of each chart and an explanation of the origin of the numbers


For the calculations the standard C# LINQ-functions Min, Max and Avg are used. For the standard deviation this [https://stackoverflow.com/questions/2253874/standard-deviation-in-linq LINQ-extension] is used with a modification for a minimum number of observations required of 2, if less the StdDev returns 0 (zero).
For the calculations the standard C# LINQ-functions Min, Max and Avg are used. For the standard deviation this [https://stackoverflow.com/questions/2253874/standard-deviation-in-linq LINQ-extension] is used with a modification for a minimum number of observations required of 2, if less the StdDev returns 0 (zero).