Posted in Python onFebruary 14, 2020
这篇文章主要介绍了Python如何在DataFrame增加数值,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友可以参考下
生成一个 DataFrame
import pandas as pd name = ['Cindy','John','Matt'] point = [78,87,88] df_grade = pd.DataFrame(name, columns=['name']) df_grade = pd.concat([df_grade, pd.DataFrame(point,columns=['point'])],axis=1)
新增一列
df_grade['gender'] = 'male' print(df_grade)
结果
name point gender 0 Cindy 78 male 1 John 87 male 2 Matt 88 male
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持三水点靠木。
Python如何在DataFrame增加数值
- Author -
sym0210声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@