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

作者:GoAmterLiu 时间:2021-03-10 02:43:14 

上图

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

代码


# -*- 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?


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

来源:https://blog.csdn.net/qq_33039859/article/details/73440782

标签:pandas,numpy,excel
0
投稿

猜你喜欢

  • Vue路由跳转传参或者打开新页面跳转问题

    2024-04-27 16:01:09
  • 教你怎么用python实现字符串转日期

    2021-08-22 16:35:13
  • 用 Python 元类的特性实现 ORM 框架

    2022-02-12 12:45:24
  • python中的字符串占位符的"{0:2}"

    2021-04-28 20:23:39
  • mysql存储过程如何利用临时表返回结果集

    2024-01-13 07:39:05
  • ORACLE查询删除重复记录三种方法

    2024-01-19 11:03:10
  • js控制表单不能输入空格的小例子

    2013-07-21 11:58:51
  • golang goquery selector选择器使用示例大全

    2023-10-14 15:40:58
  • Python爬取数据保存为Json格式的代码示例

    2022-10-13 17:11:36
  • python2.7 json 转换日期的处理的示例

    2021-02-10 12:39:50
  • python实现的简单窗口倒计时界面实例

    2023-06-18 23:02:55
  • 网红编程语言Python将纳入高考你怎么看?

    2022-06-28 15:48:12
  • 通过python实现windows桌面截图代码实例

    2023-11-19 03:46:27
  • php 保留小数点

    2023-06-21 10:47:04
  • Python分支语句与循环语句应用实例分析

    2022-12-02 03:35:31
  • python 经典数字滤波实例

    2022-08-26 10:23:22
  • 终端能到import模块 解决jupyter notebook无法导入的问题

    2022-11-19 19:26:29
  • M2实现Nodejs项目自动部署的方法步骤

    2024-05-13 10:05:21
  • Python基于贪心算法解决背包问题示例

    2022-10-31 01:25:56
  • 自动完成JS类(纯JS, Ajax模式)

    2024-05-11 09:41:59
  • asp之家 网络编程 m.aspxhome.com