Pandas describe()

1 개요[ | ]

Pandas describe()

2 시리즈[ | ]

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

3 데이터프레임[ | ]

import pandas as pd
df = pd.DataFrame({'categorical': pd.Categorical(['d','e','f']),
                   'numeric': [1, 2, 3],
                   'object': ['a', 'b', 'c']
                  })
df.describe()
df.describe(include='all')

4 같이 보기[ | ]

5 참고[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}