Skip to content

Commit

Permalink
Merge pull request ibis-project#61 from xmnlab/master
Browse files Browse the repository at this point in the history
Changed left and right params to column numeric type
  • Loading branch information
xmnlab committed Jun 7, 2018
2 parents a169dff + 5fec8d4 commit 825d5ca
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ibis/expr/operations.py
Original file line number Diff line number Diff line change
Expand Up @@ -859,8 +859,8 @@ class Variance(VarianceBase):

class Correlation(Reduction):
"""Coefficient of correlation of a set of number pairs."""
left = Arg(rlz.numeric)
right = Arg(rlz.numeric)
left = Arg(rlz.column(rlz.numeric))
right = Arg(rlz.column(rlz.numeric))
how = Arg(rlz.isin({'sample', 'pop'}), default=None)
where = Arg(rlz.boolean, default=None)

Expand Down

0 comments on commit 825d5ca

Please sign in to comment.