作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我编写了以下代码,我想将输出写入 csv 文件。我怎样才能做到这一点?谢谢你帮助我。
这是我的代码的摘录:
columnNames = ['Stride Length', 'Stand Duration', 'Swing Duration', 'Douple Support Time', 'Relation Swing Stand']
resultsPerRowRatio = list()
for i in range(len(stepData)):
stepDataLeft = stepData.to_numpy()[i, 0:5]
stepDataRight = stepData.to_numpy()[i, 5:10]
dataF = pd.DataFrame({'stepDataLeft': stepDataLeft, 'stepDataRight': stepDataRight}, index=columnNames)
#Symmetry Ratio:
dataF['Symmetry Ratio Row']=np.where(dataF['stepDataLeft'] < dataF['stepDataRight'],sv.symmetryRatio(dataF['stepDataLeft'],dataF['stepDataRight']), sv.symmetryRatio(dataF['stepDataRight'],dataF['stepDataLeft']))
resultsPerRowRatio.append(dataF)
print("Symmetry Ratio: "+str(resultsPerRowRatio))
最佳答案
这是一种可以考虑使用 to_csv()
的方法:to_csv()
参数(更多可用,但这是简单的情况):
PATH = your_folder_path
FILENAME = output_file_name
if os.path.isfile(PATH+FILENAME):
dataF.to_csv(PATH+FILENAME, header=False, mode='a', index=True)
else:
dataF.to_csv(PATH+FILENAME, header=True, mode='w', index=True)
关于python - 如何将数据框/列表写入 csv 文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60271566/
我是一名优秀的程序员,十分优秀!