Nineya
Home
Blog
Pandas ENH: Implement to_json() for Panel
2025-02-10 00:17:11
1630
related #4889Currently the to_json() method only works for Series and DataFrame, and raises NotImplementedError when cal...
Pandas DOC/API: provide a doc matrix of all indexing accessors and behaviors
2025-02-10 00:17:06
8181
related #5420ML issue: https://groups.google.com/forum/#!topic/pydata/Ke8kntiPHqwexisting tests here (and tests/test_fra...
Pandas BUG: Panel.to_hdf silently fails with NaT
2025-02-10 00:17:00
11142
Just on panels, works fine for DataFrames.Gives a TypeError when reading:In [7]: df = pd.DataFrame({'A': [1, 2], 'B': pd...
Pandas reset_index for columns
2025-02-10 00:16:55
791
Is there a reset_index equivalent for the column headings? In other words, if the column names are an MultiIndex, how wo...
Pandas API: parakeet backend for eval
2025-02-10 00:16:50
566
this might be interesting as it allows jit optimizations but w/o major deps (like blaze/numba).could be useful as a back...
Pandas Assigning to a Sliced Panel fails when slicing with boolean arrays
2025-02-10 00:16:45
1845
This is similar to Issue #1533 and I've adapted the example from there.import numpy as npimport pandas as pda = pd.Panel...
Pandas Test incorrect for csv import
2025-02-10 00:16:40
1714
This test appears to be incomplete: https://github.com/pydata/pandas/blob/master/pandas/io/tests/test_parsers.py#L1421Th...
Pandas Allow Panel arith methods for types other than scalars
2025-02-10 00:16:35
2518
Taken from #4960Currently Panel arith methods only work with scalars. https://github.com/jreback/pandas/commit/adf9d48bf...
Pandas Panel.resample should default to axis=1
2025-02-10 00:16:30
1484
In [1]: import pandas as pdIn [2]: panel = pd.util.testing.makePapd.util.testing.makePanel pd.util.testing.makePanel4...
Pandas BUG: ExcelFile.parse() skiprows arg doesn't play nice
2025-02-10 00:16:25
3946
related/dup #4340Was building on this example on SO, and found a bug in ExcelFile().parse option skiprows, when passed a...
Pandas read_csv: delim_whitespace ignored when skip_footer is set
2025-02-10 00:16:20
2334
The delim_whitespace options no longer works when specifying a skip_footer other then zero. I can replicate the behavior...
Pandas MultiIndex init function
2025-02-10 00:16:14
1935
At the moment you have to use MI.from_arrays or MI.from_tuplesI think it would be nicer to be able to call MultiIndex di...
Pandas IO Converters
2025-02-10 00:16:10
606
discussed in #4698convert_data would return an appropriate Converter object to do various types of conversions. Mainly u...
Pandas ENH/API: add numeric_only with a default of False to numerics
2025-02-10 00:16:05
781
for:min,max,sum,var,std,kurt,median,mad,prod,skewThe big reason to do this is a performance hit when you happen to have ...
Pandas No way to access correlation significance value (Spearman, Kendall)
2025-02-10 00:16:00
3152
The corr() method attached to DataFrames is a great way to get a matrix of correlation coefficients. But for the Kendal...
Pandas What do you guys think about a DataFrame.drop_consecutive_duplicates?
2025-02-10 00:15:54
713
It would work similar to drop_duplicates (same interface), but would only remove consecutive duplicates (like Unix's uni...
Pandas Managing pandas's hash table footprint
2025-02-10 00:15:49
4474
Many operations in pandas trigger the population of a hash table from the underlying index values. This can be very cost...
Pandas Add Support For Reading XBRL Files in Pandas
2025-02-10 00:15:45
916
XBRL (http://en.wikipedia.org/wiki/XBRL) is the standard format for financial filings.As of 2009, the SEC requires compa...
Pandas BUG: read_table error with tabs, dtype and index_col
2025-02-10 00:15:40
2055
This gist demonstrates the problem:https://gist.github.com/brentp/6066942It's discussed in this thread:https://groups.go...
Pandas BUG: Panel resample not working with loffset
2025-02-10 00:15:35
762
from the ML: https://groups.google.com/forum/#!topic/pystatsmodels/bCatleGJ4UUIn [15]: p = Panel(randn(10,100,5),major_a...
上一页
下一页
1
…
92
93
94
95
96
…
2246
.