Nineya
Home
Blog
Pandas Test long string formatting in to_string and to_html
2025-02-10 00:10:30
6144
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)
2025-02-10 00:10:25
1579
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
2025-02-10 00:10:20
3588
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
2025-02-10 00:10:15
4233
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
2025-02-10 00:10:10
1440
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
2025-02-10 00:10:04
3251
Enhanced time series plotting; adaptation of scikits.timeseries matplotlib-based plotting codeLet's add sample plots to ...
Pandas created normed time info
2025-02-10 00:09:58
1778
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
2025-02-10 00:09:52
1324
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
2025-02-10 00:09:46
133
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
2025-02-10 00:09:41
208
Right now looks up the frequency conversion function once per ordinalComment From: wesmThis would be more refactoring th...
Pandas Think about adding Period slicing
2025-02-10 00:09:36
177
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
2025-02-10 00:09:31
678
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
2025-02-10 00:09:26
228
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
2025-02-10 00:09:21
797
To facilitate groupby-type operations, from mailing list:With the following:df # predefineddf['E'] = pandas.Series(0.)fo...
Pandas NOAA data study
2025-02-10 00:09:15
815
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
2025-02-10 00:09:11
421
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
2025-02-10 00:09:06
2248
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
2025-02-10 00:09:00
8991
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.
2025-02-10 00:08:50
14871
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
2025-02-10 00:08:45
1127
cc @lodagro, moving further discussion here from the mailing listPanel was my first idea to use, but i got stuck rather ...
上一页
下一页
1
…
96
97
98
99
100
…
2246
.