Mean Kurtosis of all rows pandas

Code examples

1
0

Mean Kurtosis of all rows pandas

# Kurtosis of all rows for specific range of columns
df['kurt'] = df.iloc[:,<col_num_start>:<col_num_end>].kurtosis(axis = 1)

# Kurtosis of all rows for specific columns
df['kurt'] = df.iloc[:,[<col_1>,<col_2>,<col_3>].kurtosis(axis = 1)

# Specify the columns in a list by number

Similar pages

Similar pages with examples

In other languages

This page is in other languages

Русский
..................................................................................................................
Italiano
..................................................................................................................
Polski
..................................................................................................................
Română
..................................................................................................................
한국어
..................................................................................................................
हिन्दी
..................................................................................................................
Français
..................................................................................................................
Türk
..................................................................................................................
Česk
..................................................................................................................
Português
..................................................................................................................
ไทย
..................................................................................................................
中文
..................................................................................................................
Español
..................................................................................................................
Slovenský
..................................................................................................................
Балгарскі
..................................................................................................................
Íslensk
..................................................................................................................