timeDerivative()

Signature:

time_derivative(in_place: bool = False) -> TimeSeries

Detailed Documentation

The hec-python-library equivalent of Jython method timeDerivative():

If in_place=True, the instance itself is modified. In this case the returned value (which can be ignored in python) is the modified instance, which can be used in chaining methods.

Example:

ts2 = ts1.time_derivative()

Signature:

itime_derivative() -> TimeSeries

Convenience method for calling timeDerivative(...) with in_place=True.

Example:

ts.itime_derivative()