logo

Pandas DataFrame.describe()

Metóda description() sa používa na výpočet niektorých štatistických údajov, napr percentil, priemer a std číselných hodnôt série alebo dátového rámca. Analyzuje číselné aj objektové rady a tiež sady stĺpcov DataFrame zmiešaných dátových typov.

Syntax

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

Parametre

    percentil:Je to voliteľný parameter, ktorý je ako zoznam údajov typu čísel, ktoré by mali byť medzi 0 a 1. Jeho predvolená hodnota je [.25, .5, .75], ktorá vracia 25., 50. a 75. percentil.zahŕňajú:Je to tiež voliteľný parameter, ktorý zahŕňa zoznam typov údajov pri popise DataFrame. Jeho predvolená hodnota je None.vylúčiť:Je to tiež voliteľný parameter, ktorý vylučuje zoznam typov údajov pri popise DataFrame. Jeho predvolená hodnota je None.

Návraty

Vráti štatistický súhrn série a dátového rámca.

Príklad 1

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

Výkon

 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 

Príklad2

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

Výkon

 count 4 unique 3 top q freq 2 dtype: object 

Príklad 3

 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ýkon

 categorical count 3 unique 3 top u freq 1 

Prí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ýkon

 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