Nineya
Home
Blog
Pandas No roundtrip for pd.Panel when writing to excel.
2025-02-10 00:26:31
418
Currently pd.read_excel only allows reading in DataFrames. To read a Panel back in (after pnl.to_excel(fl)) one has to l...
Pandas Accept SQLAlchemy Connection as con param in pd.read_sql_query()
2025-02-10 00:26:26
1940
Currently pd.read_sql_query() accepts an sqlalchemy.engine.base.Engine instance as the con parameter. Using that, it pr...
Pandas Module xlrd is not installed with 0.14; creates an Import Error when using read_excel
2025-02-10 00:26:22
6048
After doingconda create -n dummy_python python=2.7 pandas=0.14 ipython=2.0and then activating dummy_python, I get the fo...
Pandas PeriodIndex cannot infer frequency in cases where Period can
2025-02-10 00:26:15
1511
xref #6771Period("2000-01")Period('2000-01', 'M')PeriodIndex(["2000-01"])ValueError: freq not specified and cannot be in...
Pandas CLN: Refactor pd.offsets.CustomBusinessDay
2025-02-10 00:26:10
1384
xref #8293The code has evolved quite a bit and could probably benefit from refactoring. In particular warpping the busda...
Pandas passing index parameter shouldn't be necessary when applying pivot function
2025-02-10 00:26:05
1300
Hello,I have a Pandas DataFrame df like this: name value2014-01-01 temp 10.02014-01-01 p 101.02014-0...
Pandas Performance issues with groupby for large values of ngroups
2025-02-10 00:25:59
856
Per @jreback: https://github.com/pydata/pandas/pull/8410#issuecomment-57100206Groupby for large values of ngroups, 10000...
Pandas TST: Remove skip for mpl 1.5 / current dev
2025-02-10 00:25:54
843
Follow up to https://github.com/pydata/pandas/pull/8398This can be done now.Remove https://github.com/pandas-dev/pandas/...
Pandas BUG/VIS: Pie Plot with subplots doesn't include NaNs in legend
2025-02-10 00:25:50
799
Followup to https://github.com/pydata/pandas/pull/8307In [1]: df = pd.DataFrame(np.random.rand(4, 4))In [2]: df2 = df.co...
Pandas BUG: HDFStore doesn't support a Panel with MultiIndex when format='table'
2025-02-10 00:25:40
12738
Looks like I can append() to an HDFStore object a DataFrame with a MultiIndex, but not a Panel with a MultiIndex. Simila...
Pandas categorical fixup 3
2025-02-10 00:25:35
2974
[ ] check that plot does the right thing, i.e. ordering of the categories [ ] Make a utils.testing.makeCategorical() Ser...
Pandas Panel.clip() doesn't accept (even) scalar values
2025-02-10 00:25:27
1465
Let's take the following example:d = {'Item1' : pandas.DataFrame(numpy.random.randn(4, 3)), 'Item2' : pandas.DataFra...
Pandas API/ENH/COMPAT: compat for datetime.time via Timedelta
2025-02-10 00:25:21
1986
Now that Timedelta is a full fledged type. It is quite trivial to convert a datetime.time to a Timedelta.pros:- highly p...
Pandas to_json() Flat Output
2025-02-10 00:25:16
1641
The to_json() I/O command current provides the following output:split dict like {index -> [index], columns -> [c...
Pandas API: add astype coerce argument / remove raise_on_error
2025-02-10 00:25:11
907
http://stackoverflow.com/questions/25952790/convert-pandas-series-from-dtype-object-to-float-and-errors-to-nans/25952844...
Pandas pandas.cut crashes on all zero input
2025-02-10 00:25:06
1390
xref #7751 import pandas as pdpd.cut([0,0,0,0], 10)result:ValueError: Bin edges must be unique: array([ 0., 0., 0., 0...
Pandas ENH: allow axis argument to append / move append code to generic.py
2025-02-10 00:25:01
1124
http://stackoverflow.com/questions/25896241/creating-columns-dynamically-assigning-them-a-constant-row-vector/25896504#2...
Pandas applymap for Panel
2025-02-10 00:24:56
206
applymap function for panel, as per DataFrameComment From: jrebackfyi, this is rarely necessary as Panel is a numpy-arra...
Pandas Unable to write to HDF5 table if DataFrame has mixed object types (pd.Timestamp and str)
2025-02-10 00:24:51
3891
When attempting to store data in an HDF5 table, I found a problem where an error is raised if there are multiple object ...
Pandas ENH: set multi-index names as NamedTuples
2025-02-10 00:24:45
17485
import pandas as PDs1=PD.Series((1,4,9,16), name=dict(a=1,b=2))s2=s1*2s2.name=dict(c=5,d=7)s10 11 42 93 1...
上一页
下一页
1
…
87
88
89
90
91
…
2246
.