- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
设置:
np.random.seed(0)
iix = pd.MultiIndex.from_product([['bar', 'baz', 'foo'],['one', 'two']])
df = pd.DataFrame(np.random.randn(3, 6), columns=iix)
Out[120]:
bar baz foo
one two one two one two
0 1.764052 0.400157 0.978738 2.240893 1.867558 -0.977278
1 0.950088 -0.151357 -0.103219 0.410599 0.144044 1.454274
2 0.761038 0.121675 0.443863 0.333674 1.494079 -0.205158
在 level = 1 和所有列 two
上set_index
。我需要使用元组列表,如下所示
df.set_index([('bar', 'two'), ('baz', 'two'), ('foo', 'two')])
Out[121]:
bar baz foo
one one one
(bar, two) (baz, two) (foo, two)
0.400157 2.240893 -0.977278 1.764052 0.978738 1.867558
-0.151357 0.410599 1.454274 0.950088 -0.103219 0.144044
0.121675 0.333674 -0.205158 0.761038 0.443863 1.494079
问题:是否有其他简单的方法可以在不使用上述元组列表的情况下实现此set_index
?
注意:我知道我可以使用列表理解和get_level_values
来概括元组列表的构造。不过,我对不使用元组列表的方式感兴趣。
最佳答案
让我们尝试一下这种疯狂的做法:
df.set_index(pd.MultiIndex.from_frame(df.loc(axis=1)[:, 'two'])).loc(axis=1)[:,'one']
输出:
bar baz foo
one one one
(bar, two) (baz, two) (foo, two)
0.400157 2.240893 -0.977278 1.764052 0.978738 1.867558
-0.151357 0.410599 1.454274 0.950088 -0.103219 0.144044
0.121675 0.333674 -0.205158 0.761038 0.443863 1.494079
使用一个鲜为人知的参数.loc
,axis
。 See docs
You can also specify the axis argument to .loc to interpret the passed slicers on a single axis.
关于python - 不使用元组的多索引列的 set_index,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59570054/
设置: np.random.seed(0) iix = pd.MultiIndex.from_product([['bar', 'baz', 'foo'],['one', 'two']]) df =
我有一个这样开头的 CSV 文件: Year,Boys,Girls 1996,333490,315995 1997,329577,313518 1998,325903,309998 当我将它读入 pa
我在 Julia 数据帧的 python 中寻找类似 .set_index() 的函数。 我搜索并发现 NamedArray 可以给出与 Python 中的 .set_index() 类似的结果,如下
我正在尝试从我的数据框中的列之一设置数据框的索引。这个数据框的旧索引本质上是没有意义的。 但是当我使用 set_index(['Name']) 时,我添加了一个新列,这不是我想要的行为。我找不到解决方
我有一个数据帧数据。分组并重置索引后,我无法将日期列设置为索引。 data = data.groupby('Payment Date ') data['Payment Amount '].sum().
我有一个从 HDFS 上的 parquet 文件创建的 dask 数据框。使用 api: set_index 创 build 置索引时,它失败并出现以下错误。 File "/ebs/d1/agent/
我找不到在 Pandas 0.14 中查找多重索引的方法。这是我遇到问题的一些模拟数据。 代码: row1 = ['red', 'ferrari', 'mine'] row2 = ['blue', '
我有一个看起来像这样的数据框(索引未显示) Time Letter Type Value 0 A x 10 0 B y
从上面,你可以看到我已经将索引设置为“index”。我的期望是能够使用“索引”列来删除行,并且仅使用“Barangay”列作为功能而不是数据框的索引。 如上所示,仍然使用“Barangay”列作为引用
我想用 df.set_index() 函数更改我的 DataFrame 索引列。虽然这提供了一个功能解决方案,但它创建了一个我想摆脱的“额外”行。 df = pd.DataFrame({'A': ['
我有很多大约这种类型的 DataFrame: import pandas as pd import numpy as np x1 = pd.DataFrame(np.vstack((np.random
我有一个如下所示的数据框: Priority RID_solve Prob RID_prob Remarks 0 1 5001 34
我有以下数据框: df = pd.DataFrame({ 'Trader': 'Carl Mark Carl Joe Joe Carl Joe Carl'.split(), 'Product': li
我在我的数据框上运行以下代码函数: del dfname["Unnamed: 0"] dfname["date"] = pd.to_datetime(dfname["date"]) dfname.se
在 Pandas 中,如果我有一个如下所示的 DataFrame: 0 1 2 3 4 5 6 0
我有一个数据框,正在尝试将索引设置为“时间戳”列。目前索引只是一个行号。时间戳格式的一个例子是:2015-09-03 16:35:00 我试过设置索引: df.set_index('Timestamp
假设我创建了一个带有两列的 pandas DataFrame,b(一个 DateTime)和 c(一个整数)。现在我想从第一列 (b) 中的值创建一个 DatetimeIndex: import pa
我有一个看起来像 like this 的数据框: 我想将 'TIME_STAMP_NEW' 列作为索引。当前代码: twoweektable['TIME_STAMP_NEW'] = pd.to_dat
data = [['g1','a',1],['g1','b',2],['g2','b',3],['g2','a',4]] df = pandas.DataFrame(data=data, column
我正在尝试调用 df.set_index,使我设置索引的列的 dtype 是新的 index.dtype。不幸的是,在下面的示例中,set_index 更改了 dtype。 df = pd.DataF
我是一名优秀的程序员,十分优秀!