Skip to content

Commit

Permalink
Update cum_transform_feature.py
Browse files Browse the repository at this point in the history
  • Loading branch information
gsheni committed Apr 16, 2019
1 parent 601b8bf commit 41c95c7
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions featuretools/primitives/standard/cum_transform_feature.py
Expand Up @@ -5,7 +5,7 @@


class CumSum(TransformPrimitive):
"""Calculates the cumulative sum over a feature.
"""Calculates the cumulative sum over a grouping.
Description:
Given a list of values, return the cumulative sum
Expand All @@ -31,7 +31,7 @@ def cum_sum(values):


class CumCount(TransformPrimitive):
"""Calculates the cumulative count over a feature.
"""Calculates the cumulative count over a grouping.
Description:
Given a list of values, return the cumulative count
Expand All @@ -57,7 +57,7 @@ def cum_count(values):


class CumMean(TransformPrimitive):
"""Calculates the cumulative mean over a feature.
"""Calculates the cumulative mean over a grouping.
Description:
Given a list of values, return the cumulative mean
Expand All @@ -83,7 +83,7 @@ def cum_mean(values):


class CumMin(TransformPrimitive):
"""Calculates the cumulative minimum over a feature.
"""Calculates the cumulative minimum over a grouping.
Description:
Given a list of values, return the cumulative min
Expand All @@ -109,7 +109,7 @@ def cum_min(values):


class CumMax(TransformPrimitive):
"""Calculates the cumulative maximum over a feature.
"""Calculates the cumulative maximum over a grouping.
Description:
Given a list of values, return the cumulative max
Expand Down

0 comments on commit 41c95c7

Please sign in to comment.