Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Performace Regression Printing a DataFrame (0.11.0rc1) #3373

Closed
dhirschfeld opened this issue Apr 16, 2013 · 2 comments
Closed

Performace Regression Printing a DataFrame (0.11.0rc1) #3373

dhirschfeld opened this issue Apr 16, 2013 · 2 comments
Milestone

Comments

@dhirschfeld
Copy link
Contributor

With 0.10.1:

In [1]: pd.__version__
Out[1]: '0.10.1'

In [2]: dates = pd.date_range('01-Jan-2013','01-Jan-2014', freq='H')
   ...: df = pd.DataFrame(randn(dates.size,5), index=dates)

In [3]: %time print(df)
<class 'pandas.core.frame.DataFrame'>
DatetimeIndex: 8761 entries, 2013-01-01 00:00:00 to 2014-01-01 00:00:00
Freq: H
Data columns:
0    8761  non-null values
1    8761  non-null values
2    8761  non-null values
3    8761  non-null values
4    8761  non-null values
dtypes: float64(5)
Wall time: 9 ms    

With 0.11.0rc1:

In [1]: pd.__version__
Out[1]: '0.11.0rc1'

In [2]: dates = pd.date_range('01-Jan-2013','01-Jan-2014', freq='H')
    ...: df = pd.DataFrame(randn(dates.size,5), index=dates)

In [3]: %time print(df)
<class 'pandas.core.frame.DataFrame'>
DatetimeIndex: 8761 entries, 2013-01-01 00:00:00 to 2014-01-01 00:00:00
Freq: H
Data columns (total 5 columns):
0    8761  non-null values
1    8761  non-null values
2    8761  non-null values
3    8761  non-null values
4    8761  non-null values
dtypes: float64(5)
Wall time: 3.61 s   
@jreback
Copy link
Contributor

jreback commented Apr 16, 2013

thanks for the report, already open see #3337 (and I believe a fix has been pushed)

@jreback jreback closed this as completed Apr 16, 2013
@dhirschfeld
Copy link
Contributor Author

Ah, sorry - searched the issues but missed that one.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants