作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个 pandas DataFrame
设置如下:
Type time
A 0
A 1
A 2
B 0
B 1
B 2
我需要生成一个结构如下的列表(或系列):
["A.1-A.0", "A.2-A.0", "B.1"-"B.0", "B.2"-"B.0"]
groupby
或类似的函数能够生成这样的列表(或系列)吗?
最佳答案
import pandas as pd
from StringIO import StringIO
data = StringIO("""Type time
A 0
A 1
A 2
B 10
B 11
B 12""")
df = pd.read_csv(data, delim_whitespace=True, dtype="O")
def set_first(x):
x["ptime"] = x.time.values[0]
x = x[1:]
r = x.Type + "." + x.time + "-" + x.Type + "." + x.ptime
return r
print df.groupby(df.Type, group_keys=False).apply(set_first)
输出:
1 A.1-A.0
2 A.2-A.0
4 B.11-B.10
5 B.12-B.10
关于python - 生成 pandas Series 或 DataFrame 中的组组合,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15496454/
我以前使用过像 Netbeans 和 eclipse 这样的 IDE。 我在 friend 的电脑上下载了“Visual Studio Express 2013 for windows desktop
我正在尝试弄清楚如何在 GBA 大小的 EZ Flash 3 合 1 卡中对 PSRAM 进行编程。基本上重复 GBA Exploader 和其他程序所做的事情。 如果我选择一个 block 并对其进
Filter1=re.findall(r'',PageSource) Filter2=re.findall(r'',PageSource) Filter3=re.findall(r'(.*?).*?'
关闭。这个问题不符合Stack Overflow guidelines .它目前不接受答案。 我们不允许在 Stack Overflow 上提出有关通用计算硬件和软件的问题。您可以编辑问题,使其成为
我是一名优秀的程序员,十分优秀!