- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一堆 Pandas Series,它们一次生成一个,我想将它们中的每一个分配为 DataFrame 中的一行,DataFrame 的列是所有 Series 索引值的并集。
例如:
import numpy as np
import pandas as pd
# the names of all series are known in advance
df = pd.DataFrame(index=['A', 'B'])
# in reality there are many long series, not just two
a = pd.Series({'v':0, 'w':1, 'x':2, 'y':3}, name='A')
b = pd.Series({ 'x':4, 'y':5, 'z':6}, name='B')
# generate and assign each series as one row in the frame
for row in (a,b):
# create new columns - this is what I want to eliminate
for column in row.index.difference(df.columns):
df[column] = np.nan
df.loc[row.name] = row
print(df)
这会产生预期的结果:
v w x y z
A 0.0 1.0 2.0 3.0 NaN
B NaN NaN 4.0 5.0 6.0
但是如果没有 for column
循环,它会生成一个没有列的空 DataFrame。
我希望消除 for column
循环。我不知道所有的专栏提前。我还希望以矢量化方式将 np.nan
分配给所有新列,但由于我在此处提交的旧问题,这不起作用:https://github.com/pandas-dev/pandas/issues/13658
最佳答案
pd.DataFrame.set_value
将自动添加列。
df = pd.DataFrame()
# in reality there are many long series, not just two
a = pd.Series({'v':0, 'w':1, 'x':2, 'y':3}, name='A')
b = pd.Series({ 'x':4, 'y':5, 'z':6}, name='B')
# generate and assign each series as one row in the frame
for row in (a,b):
for i, v in row.iteritems():
df.set_value(row.name, i, v)
print(df)
v w x y z
A 0.0 1.0 2.0 3.0 NaN
B NaN NaN 4.0 5.0 6.0
这仍然是一个循环,但是 set_value
非常灵活。
时间测试
小数据
df = pd.DataFrame()
los = [pd.Series(1, [i], name=i) for i in range(10)]
stmt1 = """
for row in los:
for column in row.index.difference(df.columns):
df[column] = np.nan
df.loc[row.name, row.index] = row
"""
stmt2 = """
for row in los:
for col, value in row.iteritems():
df.set_value(row.name, col, value)
"""
setup = """
from __main__ import df, los, np
"""
print(timeit(stmt1, setup, number=100))
print(timeit(stmt2, setup, number=100))
0.5426401197910309
0.01039268122985959
大数据
df = pd.DataFrame()
los = [pd.Series(1, [i], name=i) for i in range(1000)]
stmt1 = """
for row in los:
for column in row.index.difference(df.columns):
df[column] = np.nan
df.loc[row.name, row.index] = row
"""
stmt2 = """
for row in los:
for col, value in row.iteritems():
df.set_value(row.name, col, value)
"""
setup = """
from __main__ import df, los, np
"""
print(timeit(stmt1, setup, number=100))
print(timeit(stmt2, setup, number=100))
63.69273182330653
1.1242545540444553
关于Pandas:如何在将系列分配为行时将缺失的列添加到 DataFrame,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43084398/
我编写了一个 Android 应用程序,它使用 Azure 来执行用户通过 Google、Twitter 和 Facebook 的登录;它使用 Microsoft.WindowsAzure.Mobil
我想将 AdomdClient 引用添加到 C# 项目,但它不在引用列表中。客户端列在程序集文件夹 C:\Windows\Assembly 中。 计算机上安装了 SQL Server 2012。 最佳
我正在学习“绘图应用程序”的教程。当我在 Firefox 上启动我的应用程序时,Firebug 告诉我“在语句之前缺少 ;” 我在第 9 行调用函数的位置。我只是不明白应该将这些“;”放在哪里. va
我想将 AdomdClient 引用添加到 C# 项目,但它不在引用列表中。客户端列在程序集文件夹 C:\Windows\Assembly 中。 计算机上安装了 SQL Server 2012。 最佳
我在 Firebug 中不断收到关于 onClick 事件的错误。 我已经尝试了 "和 ' 的各种不同组合,但无济于事。在添加 onClick 事件之前,这工作正常。 有人能发现我可能做错了什么吗?
Visual Studio 2015 告诉我找不到 WSASetSocketSecurity。 该 dll 存在并且还包括似乎没问题。 我的包括: windows.h stdio.h Wincrypt
我需要访问 eloquent 的 whereHasNot方法(此处添加: https://github.com/laravel/framework/commit/8f0cb08d8ebd157cbfe
跟随宠物物体检测的 TF 教程:https://github.com/tensorflow/models/blob/master/research/object_detection/g3doc/run
构建路径 > 添加库 > JUnit 无法添加 JUnit3 或 JUnit4 组件。 我在.log 中看到这样的消息 !MESSAGE No property tester contributes
我正在运行此脚本来查看网络上的摄像机: gst-launch udpsrc port=1234 ! "application/x-rtp, payload=127" ! rtph264depay !
我正在使用http://java.sun.com/jsp/jstl/fmt用于从 Spring 配置中设置的 Message Resource Bundle 输出消息的标签库。消息解析也可以放在 Co
我正在将 Ninject 与 MVC4 连接起来,并让它工作到尝试实际解决依赖关系的程度。但是,我收到以下异常: Method not found: 'System.Web.Http.Services
关闭。这个问题不符合Stack Overflow guidelines .它目前不接受答案。 这个问题似乎与 help center 中定义的范围内的编程无关。 . 关闭 9 年前。 Improve
我在启动 ASP.NET MVC5 应用程序时遇到问题。到目前为止一切正常。启动应用程序时出现以下错误: Could not load file or assembly 'Microsoft.Appl
我已经使用以下方法创建了一个环境: conda create --prefix C:\Users\Dell\Dropbox\DjangoProjects\webenv python=3.6 执行后:c
我们有一个遗留的 Web 窗体应用程序,我们最近将其从网站项目转换为 Web 应用程序项目。 Web 窗体项目是解决方案的“启动”项目。 有一个 MVC 项目是对 Web 窗体项目的引用。 在 MVC
使用某种字体,我使用Java的FontLayout来确定它的上升、下降和行距。 (参见 Java 的 FontLayout 教程 here) 在我的具体案例中,我使用的是 Arial Unicode
我正在尝试在 linux 下编译 qt ffmpeg 包装器简单编码/解码示例 QTFFmpegWrapper source # Set list of required FFmpeg librari
我正在使用来自开发人员 android 页面的 SlidingTabLayout.java。在我使用 slidingTabLayout.setDistributeEvenly(true); 使 sli
我正在尝试使用 v360 filter 将 180° 鱼眼视频转换为普通/常规视频的 FFmpeg . 这是我尝试过的命令:ffmpeg -i in.mp4 -vf "v360=input=fishe
我是一名优秀的程序员,十分优秀!