logo

Pandas DataFrame.describe()

Metoda description() se používá pro výpočet některých statistických dat, např percentil, průměr a std číselných hodnot Series nebo DataFrame. Analyzuje jak číselné, tak objektové řady a také sady sloupců DataFrame smíšených datových typů.

Syntax

 DataFrame.describe(percentiles=None, include=None, exclude=None) 

Parametry

    percentil:Jedná se o volitelný parametr, který je datovým typem typu seznamu, který by měl spadat mezi 0 a 1. Jeho výchozí hodnota je [.25, .5, .75], která vrací 25., 50. a 75. percentil.zahrnout:Je to také volitelný parametr, který zahrnuje seznam datových typů při popisu DataFrame. Jeho výchozí hodnota je Žádná.vyloučit:Je to také volitelný parametr, který vylučuje seznam datových typů při popisu DataFrame. Jeho výchozí hodnota je Žádná.

Návraty

Vrací statistické shrnutí Series a DataFrame.

Příklad1

 import pandas as pd import numpy as np a1 = pd.Series([1, 2, 3]) a1.describe() 

Výstup

 count 3.0 mean 2.0 std 1.0 min 1.0 25% 1.5 50% 2.0 75% 2.5 max 3.0 dtype: float64 

Příklad2

 import pandas as pd import numpy as np a1 = pd.Series(['p', 'q', 'q', 'r']) a1.describe() 

Výstup

 count 4 unique 3 top q freq 2 dtype: object 

Příklad3

 import pandas as pd import numpy as np a1 = pd.Series([1, 2, 3]) a1.describe() a1 = pd.Series(['p', 'q', 'q', 'r']) a1.describe() info = pd.DataFrame({'categorical': pd.Categorical(['s','t','u']), 'numeric': [1, 2, 3], 'object': ['p', 'q', 'r'] }) info.describe(include=[np.number]) info.describe(include=[np.object]) info.describe(include=['category']) 

Výstup

 categorical count 3 unique 3 top u freq 1 

Příklad4

 import pandas as pd import numpy as np a1 = pd.Series([1, 2, 3]) a1.describe() a1 = pd.Series(['p', 'q', 'q', 'r']) a1.describe() info = pd.DataFrame({'categorical': pd.Categorical(['s','t','u']), 'numeric': [1, 2, 3], 'object': ['p', 'q', 'r'] }) info.describe() info.describe(include='all') info.numeric.describe() info.describe(include=[np.number]) info.describe(include=[np.object]) info.describe(include=['category']) info.describe(exclude=[np.number]) info.describe(exclude=[np.object]) 

Výstup

co je $home linux
 categorical numeric count 3 3.0 unique 3 NaN top u NaN freq 1 NaN mean NaN 2.0 std NaN 1.0 min NaN 1.0 25% NaN 1.5 50% NaN 2.0 75% NaN 2.5 max NaN 3.0