datatable.Frame.kurt1()

Calculate the excess kurtosis for a one-column frame and return it as a scalar.

This function is a shortcut for:

DT.kurt()[0, 0]

Parameters

return
None | float

None is returned for non-numeric columns.

except
ValueError

If called on a Frame that has more or less than one column.

See Also

  • .kurt() – similar to this method, but can be applied to a Frame with an arbitrary number of columns.