python中align_Python pandas.DataFrame.align函数方法的使用

DataFrame.align(other, join='outer', axis=None, level=None, copy=True, fill_value=None, method=None, limit=None, fill_axis=0, broadcast_axis=None)源代码

使用指定的每个轴索引的连接方法,将轴上的两个对象对齐。

参数:other : DataFrame 或 Series

join : {‘outer’, ‘inner’, ‘left’, ‘right’}, 默认 ‘outer’

axis : 允许另一个对象的axis, 默认 None

对齐 index (0), columns (1), 或 both (None)

level: int 或 level name, 默认 None

跨level广播,匹配传递的多索引level上的索引值

copy: boolean, 默认 True

始终返回新对象。如果copy = False并且不需要重建索引,

则返回原始对象。

fill_value : scalar, 默认 np.NaN

用于缺失值的值。默认为NaN,但可以是任何“兼容”值。

method : {‘backfill’, ‘bfill’, ‘pad’, ‘ffill’, None}, 默认 None

用于reindexed Series pad的填充孔的方法/ffill:

将最后有效观察向前传播到下一个有效backfill / bfill:

使用NEXT有效观察来填补空白

limit :int, 默认 None

如果指定了method,则这是向前/

  • 0
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
TypeError Traceback (most recent call last) Cell In[15], line 3 1 import matplotlib.pyplot as plt 2 bins = [0, 1000, 5000, 10000, 50000, 100000, 200000, 500000, 1000000, 5000000] ----> 3 plt.hist(latest_data,bins,histtpye = 'bar',rwidth = 0.88) 4 plt.xlabel('Country/Region') 5 plt,ylabel('Amount') File ~\AppData\Local\Programs\Python\Python311\Lib\site-packages\matplotlib\pyplot.py:2645, in hist(x, bins, range, density, weights, cumulative, bottom, histtype, align, orientation, rwidth, log, color, label, stacked, data, **kwargs) 2639 @_copy_docstring_and_deprecators(Axes.hist) 2640 def hist( 2641 x, bins=None, range=None, density=False, weights=None, 2642 cumulative=False, bottom=None, histtype='bar', align='mid', 2643 orientation='vertical', rwidth=None, log=False, color=None, 2644 label=None, stacked=False, *, data=None, **kwargs): -> 2645 return gca().hist( 2646 x, bins=bins, range=range, density=density, weights=weights, 2647 cumulative=cumulative, bottom=bottom, histtype=histtype, 2648 align=align, orientation=orientation, rwidth=rwidth, log=log, 2649 color=color, label=label, stacked=stacked, 2650 **({"data": data} if data is not None else {}), **kwargs) File ~\AppData\Local\Programs\Python\Python311\Lib\site-packages\matplotlib\__init__.py:1459, in _preprocess_data.<locals>.inner(ax, data, *args, **kwargs) 1456 @functools.wraps(func) 1457 def inner(ax, *args, data=None, **kwargs): 1458 if data is None: -> 1459 return func(ax, *map(sanitize_sequence, args), **kwargs) 1461 bound = new_sig.bind(ax, *args, **kwargs) 1462 auto_label = (bound.arguments.get(label_namer) 1463 or bound.kwargs.get(label_namer)) File ~\AppData\Local\Programs\Python\Python311\Lib\site-packages\matplotlib\axes\_axes.py:6762, in Axes.hist(self, x, bins, range, density, weights, cumulative, bottom, histtype, align, orientation, rwidth, log, color, label, stacked, **kwargs) 6758 for xi in x: 6759 if len(xi): 6760 # python's min/max ignore nan, 6761 # np.minnan returns nan for all nan input -> 6762 xmin = min(xmin, np.nanmin(xi)) 6763 xmax = max(xmax, np.nanmax(xi)) 6764 if xmin <= xmax: # Only happens if we have seen a finite value. TypeError: '<' not supported between instances of 'pandas._libs.interval.Interval' and 'float'
06-12

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值