脚本之家,脚本语言编程技术及教程分享平台!
分类导航

Python|VBS|Ruby|Lua|perl|VBA|Golang|PowerShell|Erlang|autoit|Dos|bat|

服务器之家 - 脚本之家 - Python - 利用pandas将numpy数组导出生成excel的实例

利用pandas将numpy数组导出生成excel的实例

2021-03-05 00:19GoAmterLiu Python

今天小编就为大家分享一篇利用pandas将numpy数组导出生成excel的实例,具有很好的参考价值,希望对大家有所帮助。一起跟随小编过来看看吧

上图

利用pandas将numpy数组导出生成excel的实例

代码

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# -*- coding: utf-8 -*-
"""
Created on Sun Jun 18 20:57:34 2017
 
@author: Bruce Lau
"""
 
import numpy as np
import pandas as pd
 
# prepare for data
data = np.arange(1,101).reshape((10,10))
data_df = pd.DataFrame(data)
 
# change the index and column name
data_df.columns = ['A','B','C','D','E','F','G','H','I','J']
data_df.index = ['a','b','c','d','e','f','g','h','i','j']
 
# create and writer pd.DataFrame to excel
writer = pd.ExcelWriter('Save_Excel.xlsx')
data_df.to_excel(writer,'page_1',float_format='%.5f') # float_format 控制精度
writer.save()

How to move one row to the first in pandas?

?
1
2
create a new dataframe object
use .reindex([...]) attribute/method

以上这篇利用pandas将numpy数组导出生成excel的实例就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持服务器之家。

原文链接:https://blog.csdn.net/qq_33039859/article/details/73440782

延伸 · 阅读

精彩推荐