Pandas Test long string formatting in to_string and to_html

Start with a data frame -- large-ish number of rowsdf = DataFrame({'a':['a1']*100+['a2']*100, 'b':['b']*200})dfg = df.gr...

Pandas On windows+IDLE 2.7 get_terminal_size() returns default (80,25)

From stackoverflowPython/IDLE 2.7.3Pandas 0.8.1Notepad++ 6.1.4 (UNICODE)Windows Vista SP2 pandas.util.terminal.get_termi...

Pandas frequency of time series read with read_csv

I f I read a regular time series (with a fixed frequency) with read_csv, the resulting DataFrame has no freuqency.In [82...

Pandas Performance of adding columns to DataFrame

I found a performance issue involving modifying DataFrame objects. Adding columns where a value is present for every va...

Pandas option to collapse gaps in tsplots

Comment From: changhiskhanActually this isn't done. What I meant here was, for example, make the next day's open immedia...

Pandas doc: add plots to docstrings and reference to in what's new

Enhanced time series plotting; adaptation of scikits.timeseries matplotlib-based plotting codeLet's add sample plots to ...

Pandas created normed time info

A dataframe or time series with annual averages when used by science and engineering applications is often normalised.Th...

Pandas option to suppress plotting of corresponding higher frequency reference

In pandas 0.8.0, the time series plotting will be much improved (seeattached example plot)What I'd love to see is an opt...

Pandas Conditional density plots

See cdplot function in RComment From: jorisvandenbosscheClosing as out of scope for pandas. @wesm Feel free to reopen if...

Pandas Better vectorize period field access

Right now looks up the frequency conversion function once per ordinalComment From: wesmThis would be more refactoring th...

Pandas Think about adding Period slicing

Get subperiods via getitemp = Period( 2001)p[0, 'D'] => Period('01-Jan-2001', 'D')p[0] => Period('2001Q1', 'Q-DEC...

Pandas ENH: Time zone support with PeriodIndex

This might be quite a bit of work, maybe leave for post 0.8.0Comment From: jbrockmendelIt is clear what this means in th...

Pandas Add ability to set local frequency "context" via context manager or some such

The idea being that a lot of filling and other things would happen automatically. Goes against "explicit is better than ...

Pandas Implement some kind of irregular DataFrame proxy data structure

To facilitate groupby-type operations, from mailing list:With the following:df # predefineddf['E'] = pandas.Series(0.)fo...

Pandas NOAA data study

http://blue.for.msu.edu/lab-notes/NOAA_0.1-1/NOAA-ws-data.pdfComment From: timmieWhat are you planning with this one?Thi...

Pandas Could be integrated with the Orange data mining suite

The open source Orange project (http://orange.biolab.si/) is a component-based data mining and machine learning suite th...

Pandas Add option to adjoin DataFrames in same sheet with to_excel

Comment From: filmorIMHO this should be the default behaviour to be consistent with to_hdf.Comment From: jreback@jtratne...

Pandas ENH: Add ohlc / candlestick plotting option for DataFrame

Not sure if possible to do in a generic way. But maybe will make sense once we have an OHLC aggregator implementedCommen...

Pandas enh: api cleanup... tostring, to_string, to_html, etc.

There is a lot of semi-duplication / differences in the Series() and DataFrame() methods.Maybe it's worth taking a look ...

Pandas Craft API for 3D (Panel) <-> 2D (DataFrame) reshaping operations

cc @lodagro, moving further discussion here from the mailing listPanel was my first idea to use, but i got stuck rather ...
上一页 下一页
.