Skip to content

Commit

Permalink
Add javadocs #555
Browse files Browse the repository at this point in the history
  • Loading branch information
timowest committed Nov 26, 2013
1 parent d9d10f0 commit e4d675b
Showing 1 changed file with 15 additions and 0 deletions.
Expand Up @@ -478,6 +478,9 @@ public static <T> WindowOver<T> lag(Expression<T> expr) {
}

/**
* divides an ordered data set into a number of buckets indicated by expr and assigns the
* appropriate bucket number to each row
*
* @param num
* @return
*/
Expand Down Expand Up @@ -565,6 +568,8 @@ public static WindowOver<Long> rowNumber() {
}

/**
* returns the sample standard deviation of expr, a set of numbers.
*
* @param expr
* @return
*/
Expand All @@ -581,6 +586,8 @@ public static <T extends Number> WindowOver<T> stddevDistinct(Expression<T> expr
}

/**
* returns the population standard deviation and returns the square root of the population variance.
*
* @param expr
* @return
*/
Expand All @@ -589,6 +596,8 @@ public static <T extends Number> WindowOver<T> stddevPop(Expression<T> expr) {
}

/**
* returns the cumulative sample standard deviation and returns the square root of the sample variance.
*
* @param expr
* @return
*/
Expand All @@ -597,6 +606,8 @@ public static <T extends Number> WindowOver<T> stddevSamp(Expression<T> expr) {
}

/**
* returns the variance of expr
*
* @param expr
* @return
*/
Expand All @@ -605,6 +616,8 @@ public static <T extends Number> WindowOver<T> variance(Expression<T> expr) {
}

/**
* returns the population variance of a set of numbers after discarding the nulls in this set.
*
* @param expr
* @return
*/
Expand All @@ -613,6 +626,8 @@ public static <T extends Number> WindowOver<T> varPop(Expression<T> expr) {
}

/**
* returns the sample variance of a set of numbers after discarding the nulls in this set.
*
* @param expr
* @return
*/
Expand Down

0 comments on commit e4d675b

Please sign in to comment.