package
1.5.0
Repository: https://github.com/m3db/m3.git
Documentation: pkg.go.dev

# Functions

NewClampOp creates a new clamp op based on the type and arguments.
NewDateOp creates a new date op based on the type.
NewHistogramQuantileOp creates a new histogram quantile operation.
NewMathOp creates a new math op based on the type.
NewRoundOp creates a new round op based on the type and arguments.
No description provided by the author

# Constants

AbsType takes absolute value of each datapoint in the series.
CeilType rounds each value in the timeseries up to the nearest integer.
ClampMaxType ensures all values except NaNs are lesser than or equal to provided argument.
ClampMinType ensures all values except NaNs are greater than or equal to the provided argument.
DayOfMonthType returns the day of the month for each of the given times in UTC.
DayOfWeekType returns the day of the week for each of the given times in UTC.
DaysInMonthType returns number of days in the month for each of the given times in UTC.
ExpType calculates the exponential function for all values.
FloorType rounds each value in the timeseries down to the nearest integer.
HistogramQuantileType calculates the quantile for histogram buckets.
HourType returns the hour of the day for each of the given times in UTC.
LnType calculates the natural logarithm for all values.
Log10Type calculates the decimal logarithm for values.
Log2Type calculates the binary logarithm for all values.
MinuteType returns the minute of the hour for each of the given times in UTC.
MonthType returns the month of the year for each of the given times in UTC.
RoundType rounds each datapoint in the series.
SortDescType is the same as sort, but sorts in descending order.
SortType returns timeseries elements sorted by their values, in ascending order.
SqrtType calculates the square root for all values.
YearType returns the year for each of the given times in UTC.

# Structs

BaseOp stores required properties for logical operations.

# Interfaces

Processor is implemented by the underlying transforms.