- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我有一个 DataFrame,我想使用另一个任意列从中规范化一些任意列:
import itertools as it
import numpy as np
import pandas as pd
header = tuple(['h_seqNum', 'h_stamp', 'user_id'])
joints = tuple(['head', 'neck', 'torso'])
attribs = tuple(['pos_x','pos_y','pos_z'])
all_columns = it.izip(*it.product(joints, attribs))
multiind_first = list(it.chain(['header']*len(header), all_columns.next(), ['pose',]))
multiind_second = list(it.chain(header, all_columns.next(), ['pose',]))
df = pd.DataFrame(np.random.rand(65).reshape(5,13), columns = pd.MultiIndex.from_arrays([multiind_first, multiind_second], names=['joint', 'attrib']))
生成的 DataFrame 是这样的:
joint header head neck torso pose
attrib h_seqNum h_stamp user_id pos_x pos_y pos_z pos_x pos_y pos_z pos_x pos_y pos_z pose
0 0.681 0.059 0.607 0.093 0.504 0.975 0.317 0.739 0.129 0.759 0.254 0.814 1
1 0.914 0.420 0.305 0.242 0.700 0.180 0.324 0.171 0.477 0.943 0.877 0.069 0
2 0.522 0.395 0.118 0.739 0.653 0.326 0.947 0.517 0.036 0.647 0.079 0.227 0
3 0.475 0.815 0.792 0.208 0.472 0.427 0.213 0.544 0.440 0.033 0.636 0.527 2
4 0.767 0.774 0.983 0.646 0.949 0.947 0.402 0.015 0.913 0.734 0.192 0.032 0
我想使用另一个任意关节(例如“躯干”)归一化属于任意关节(例如“头部”)的所有列(属性)。例如类似的东西。
df['head'] = df['head'] - df['torso']
df['neck'] = df['neck'] - df['torso']
# Note that torso remains "unnormalized"
为此我写了一个函数:
def normalize_joints(df, from_joint):
joint_names = set(joints) - set([from_joint,])
for j in list(joint_names):
df[j] = df[j] - df[norm_name]
但是,当我执行此函数时,出现以下错误:
normalize_joints(df, 'torso')
---------------------------------------------------------------------------
AttributeError Traceback (most recent call last)
<ipython-input-414-47f39f04716d> in <module>()
----> 1 normalize_joints(df, 'torso')
<ipython-input-407-cf13a67fabd8> in normalize_joints(df, from_joint)
2 joint_names = set(joints) - set([from_joint,])
3 for j in list(joint_names):
----> 4 df[j] = df[j] - df[from_joint]
/Library/Python/2.7/site-packages/pandas/core/frame.pyc in __setitem__(self, key, value)
2117 fill_value, limit, takeable=takeable)
2118
-> 2119 return frame
2120
2121 def _reindex_index(self, new_index, method, copy, level, fill_value=NA,
/Library/Python/2.7/site-packages/pandas/core/frame.pyc in _set_item(self, key, value)
2164 @Appender(_shared_docs['reindex_axis'] % _shared_doc_kwargs)
2165 def reindex_axis(self, labels, axis=0, method=None, level=None, copy=True,
-> 2166 limit=None, fill_value=np.nan):
2167 return super(DataFrame, self).reindex_axis(labels=labels, axis=axis,
2168 method=method, level=level,
/Library/Python/2.7/site-packages/pandas/core/generic.pyc in _set_item(self, key, value)
677
678 __bool__ = __nonzero__
--> 679
680 def bool(self):
681 """ Return the bool of a single element PandasObject
/Library/Python/2.7/site-packages/pandas/core/internals.pyc in set(self, item, value)
1768 def sp_index(self):
1769 return self.values.sp_index
-> 1770
1771 @property
1772 def kind(self):
/Library/Python/2.7/site-packages/pandas/core/internals.pyc in _reset_ref_locs(self)
1054 # see if we can align other
1055 if hasattr(other, 'reindex_axis'):
-> 1056 if align:
1057 axis = getattr(other, '_info_axis_number', 0)
1058 other = other.reindex_axis(self.items, axis=axis,
/Library/Python/2.7/site-packages/pandas/core/internals.pyc in _rebuild_ref_locs(self)
1062
1063 # make sure that we can broadcast
-> 1064 is_transposed = False
1065 if hasattr(other, 'ndim') and hasattr(values, 'ndim'):
1066 if values.ndim != other.ndim or values.shape == other.shape[::-1]:
AttributeError: _ref_locs
经过多次尝试,我无法找到错误的根源。如果我执行操作
df['head'] - df['torso']
它返回一个具有正确结果的 DataFrame。但是,当我尝试将此 DataFrame 分配给 df['head'] 时,出现了之前显示的错误。
有什么办法可以完成这个作业吗?
此外,我想知道是否有比我正在尝试的方法更好的方法来执行相同的规范化。也许使用 groupby,然后将规范化函数应用于选定的 DataFrame?
编辑:
这个错误发生在 numpy 1.6 和 pandas 0.12
升级到 numpy 1.8 和 pandas 0.13 后,以下操作有效:
df['head'] = df['head'] - df['torso']
最佳答案
问题是您的列是 MultiIndex
的实例,试试这个:
def normalize_joints(df, from_joint):
joint_names = set(joints) - set([from_joint,])
for j in list(joint_names):
keys = [(j,c) for c in attribs]
df[keys] = df[j] - df[from_joint]
print df
normalize_joints(df, 'torso')
print df
输出:
joint header head neck torso pose
attrib h_seqNum h_stamp user_id pos_x pos_y pos_z pos_x pos_y pos_z pos_x pos_y pos_z pose
0 0.067366 0.957394 0.983969 0.602662 0.505270 0.990675 0.753841 0.598397 0.846479 0.757155 0.220009 0.328470 0.686525
1 0.806405 0.800388 0.302178 0.935559 0.180360 0.322767 0.230457 0.617555 0.602589 0.109482 0.181803 0.311266 0.929481
2 0.649677 0.237286 0.963088 0.370463 0.471590 0.489256 0.060383 0.070885 0.858312 0.306232 0.511731 0.257015 0.283287
3 0.054800 0.127925 0.099985 0.700160 0.211256 0.026782 0.820380 0.922593 0.600130 0.100745 0.418157 0.869735 0.597275
4 0.678372 0.334520 0.247894 0.616133 0.914610 0.229628 0.317488 0.224910 0.620222 0.952499 0.946568 0.539502 0.838473
joint header head neck torso pose
attrib h_seqNum h_stamp user_id pos_x pos_y pos_z pos_x pos_y pos_z pos_x pos_y pos_z pose
0 0.067366 0.957394 0.983969 -0.154493 0.285261 0.662205 -0.003314 0.378387 0.518009 0.757155 0.220009 0.328470 0.686525
1 0.806405 0.800388 0.302178 0.826077 -0.001443 0.011501 0.120975 0.435752 0.291322 0.109482 0.181803 0.311266 0.929481
2 0.649677 0.237286 0.963088 0.064231 -0.040141 0.232241 -0.245850 -0.440846 0.601297 0.306232 0.511731 0.257015 0.283287
3 0.054800 0.127925 0.099985 0.599414 -0.206900 -0.842953 0.719635 0.504436 -0.269605 0.100745 0.418157 0.869735 0.597275
4 0.678372 0.334520 0.247894 -0.336366 -0.031958 -0.309874 -0.635011 -0.721658 0.080719 0.952499 0.946568 0.539502 0.838473
关于Python:规范化 pandas DataFrame 的一些列,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21832169/
我正在处理一组标记为 160 个组的 173k 点。我想通过合并最接近的(到 9 或 10 个组)来减少组/集群的数量。我搜索过 sklearn 或类似的库,但没有成功。 我猜它只是通过 knn 聚类
我有一个扁平数字列表,这些数字逻辑上以 3 为一组,其中每个三元组是 (number, __ignored, flag[0 or 1]),例如: [7,56,1, 8,0,0, 2,0,0, 6,1,
我正在使用 pipenv 来管理我的包。我想编写一个 python 脚本来调用另一个使用不同虚拟环境(VE)的 python 脚本。 如何运行使用 VE1 的 python 脚本 1 并调用另一个 p
假设我有一个文件 script.py 位于 path = "foo/bar/script.py"。我正在寻找一种在 Python 中通过函数 execute_script() 从我的主要 Python
这听起来像是谜语或笑话,但实际上我还没有找到这个问题的答案。 问题到底是什么? 我想运行 2 个脚本。在第一个脚本中,我调用另一个脚本,但我希望它们继续并行,而不是在两个单独的线程中。主要是我不希望第
我有一个带有 python 2.5.5 的软件。我想发送一个命令,该命令将在 python 2.7.5 中启动一个脚本,然后继续执行该脚本。 我试过用 #!python2.7.5 和http://re
我在 python 命令行(使用 python 2.7)中,并尝试运行 Python 脚本。我的操作系统是 Windows 7。我已将我的目录设置为包含我所有脚本的文件夹,使用: os.chdir("
剧透:部分解决(见最后)。 以下是使用 Python 嵌入的代码示例: #include int main(int argc, char** argv) { Py_SetPythonHome
假设我有以下列表,对应于及时的股票价格: prices = [1, 3, 7, 10, 9, 8, 5, 3, 6, 8, 12, 9, 6, 10, 13, 8, 4, 11] 我想确定以下总体上最
所以我试图在选择某个单选按钮时更改此框架的背景。 我的框架位于一个类中,并且单选按钮的功能位于该类之外。 (这样我就可以在所有其他框架上调用它们。) 问题是每当我选择单选按钮时都会出现以下错误: co
我正在尝试将字符串与 python 中的正则表达式进行比较,如下所示, #!/usr/bin/env python3 import re str1 = "Expecting property name
考虑以下原型(prototype) Boost.Python 模块,该模块从单独的 C++ 头文件中引入类“D”。 /* file: a/b.cpp */ BOOST_PYTHON_MODULE(c)
如何编写一个程序来“识别函数调用的行号?” python 检查模块提供了定位行号的选项,但是, def di(): return inspect.currentframe().f_back.f_l
我已经使用 macports 安装了 Python 2.7,并且由于我的 $PATH 变量,这就是我输入 $ python 时得到的变量。然而,virtualenv 默认使用 Python 2.6,除
我只想问如何加快 python 上的 re.search 速度。 我有一个很长的字符串行,长度为 176861(即带有一些符号的字母数字字符),我使用此函数测试了该行以进行研究: def getExe
list1= [u'%app%%General%%Council%', u'%people%', u'%people%%Regional%%Council%%Mandate%', u'%ppp%%Ge
这个问题在这里已经有了答案: Is it Pythonic to use list comprehensions for just side effects? (7 个答案) 关闭 4 个月前。 告
我想用 Python 将两个列表组合成一个列表,方法如下: a = [1,1,1,2,2,2,3,3,3,3] b= ["Sun", "is", "bright", "June","and" ,"Ju
我正在运行带有最新 Boost 发行版 (1.55.0) 的 Mac OS X 10.8.4 (Darwin 12.4.0)。我正在按照说明 here构建包含在我的发行版中的教程 Boost-Pyth
学习 Python,我正在尝试制作一个没有任何第 3 方库的网络抓取工具,这样过程对我来说并没有简化,而且我知道我在做什么。我浏览了一些在线资源,但所有这些都让我对某些事情感到困惑。 html 看起来
我是一名优秀的程序员,十分优秀!