Skip to content

0.13.1: info(verbose=True) does not return non-null counts for large DataFrames #6940

Closed
@bluefir

Description

@bluefir
>>>df.info(verbose=True)
<class 'pandas.core.frame.DataFrame'>
MultiIndex: 9063396 entries, (2011-10-19 00:00:00, 000312) to (2014-03-31 00:00:00, Y8565N10)
Data columns (total 5 columns):
weight_benchmark    float64
weight_portfolio    float64
weight_active       float64
weight_msci_acwi    float64
investable          bool
dtypes: bool(1), float64(4)

>>>df.iloc[:1000].info(verbose=True)
<class 'pandas.core.frame.DataFrame'>
MultiIndex: 1000 entries, (2011-10-19 00:00:00, 000312) to (2011-10-19 00:00:00, 17275510)
Data columns (total 5 columns):
weight_benchmark    1000 non-null float64
weight_portfolio    1000 non-null float64
weight_active       1000 non-null float64
weight_msci_acwi    1000 non-null float64
investable          1000 non-null bool
dtypes: bool(1), float64(4)

Metadata

Metadata

Assignees

No one assigned

    Labels

    Duplicate ReportDuplicate issue or pull requestOutput-Formatting__repr__ of pandas objects, to_string

    Type

    No type

    Projects

    No projects

    Milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions