We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7a730e2 commit ff2e32bCopy full SHA for ff2e32b
1 file changed
src/DataFrame/Functions.hs
@@ -309,13 +309,13 @@ zScore :: Expr Double -> Expr Double
309
zScore c = (c - mean c) / stddev c
310
311
pow :: (Columnable a, Num a) => Expr a -> Int -> Expr a
312
-pow expr i = lift2Decorated (^) "max" (Just "^") True 8 expr (Lit i)
+pow expr i = lift2Decorated (^) "pow" (Just "^") True 8 expr (Lit i)
313
314
relu :: (Columnable a, Num a, Ord a) => Expr a -> Expr a
315
relu = liftDecorated (Prelude.max 0) "relu" Nothing
316
317
min :: (Columnable a, Ord a) => Expr a -> Expr a -> Expr a
318
-min = lift2Decorated Prelude.min "max" Nothing True 1
+min = lift2Decorated Prelude.min "min" Nothing True 1
319
320
max :: (Columnable a, Ord a) => Expr a -> Expr a -> Expr a
321
max = lift2Decorated Prelude.max "max" Nothing True 1
0 commit comments