蓝绝

博客园 首页 新随笔 联系 订阅 管理
上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 24 下一页

2022年11月19日 #

摘要: #求众数 import pandas as pd pd.set_option ('display.unicode.east_asian_width', True) data=[[100,90,100],[100,76,76],[76,90,76]] columns=['数学','语文','英语'] 阅读全文
posted @ 2022-11-19 20:33 蓝绝 阅读(78) 评论(0) 推荐(0) 编辑

摘要: #最大最小值-中位数 import pandas as pd pd.set_option ('display.unicode.east_asian_width', True) data=[[100,90,80],[98,67,56],[56,56,45]] columns=['数学','语文','英 阅读全文
posted @ 2022-11-19 20:03 蓝绝 阅读(54) 评论(0) 推荐(0) 编辑

摘要: #求和 和 计算平均值 import pandas as pd pd.set_option ('display.unicode.east_asian_width', True) data=[[100,90,80],[98,67,56],[56,56,45]] columns=['数学','语文',' 阅读全文
posted @ 2022-11-19 19:59 蓝绝 阅读(129) 评论(0) 推荐(0) 编辑

摘要: #按某列数据大小排名 import pandas as pd pd.set_option('display.unicode.east_asian_width',True) # 规整格式 df=pd.read_excel('电脑配件销售记录.xlsx') df['顺序排名']=df['数量'].ran 阅读全文
posted @ 2022-11-19 19:42 蓝绝 阅读(70) 评论(0) 推荐(0) 编辑

摘要: #按某列降序排序 import pandas as pd pd.set_option('display.unicode.east_asian_width',True) # 规整格式 df=pd.read_excel('电脑配件销售记录.xlsx') print(df.head()) #head() 阅读全文
posted @ 2022-11-19 19:37 蓝绝 阅读(15) 评论(0) 推荐(0) 编辑

摘要: #设置某列为行索引 import pandas as pd df=pd.read_excel('msb课程记录.xls') #print(df) df=df.set_index (['买家会员名']) print(df) 买家实际支付金额 课程总数量 课程标题 类别 \ 买家会员名 msb001 3 阅读全文
posted @ 2022-11-19 16:31 蓝绝 阅读(31) 评论(0) 推荐(0) 编辑

摘要: #重新设置索引,多出的索引数据填充 #重新设置索引,多出的索引数据填充 import pandas as pd s=pd.Series([11, 22, 33], index=[1,2,3]) print(s) #重新设置索引 print(s.reindex(range(1, 6))) #多出来两为 阅读全文
posted @ 2022-11-19 16:12 蓝绝 阅读(31) 评论(0) 推荐(0) 编辑

摘要: 阅读全文
posted @ 2022-11-19 15:06 蓝绝 阅读(20) 评论(0) 推荐(0) 编辑

摘要: #查看空值情况 import pandas as pd pd.set_option("display.unicode.east_asian.width",True) df=pd.read_excel('msb课程记录.xls') print(df) print(' ') print(df.info( 阅读全文
posted @ 2022-11-19 15:02 蓝绝 阅读(69) 评论(0) 推荐(0) 编辑

摘要: #删除数据 import pandas as pd pd.set_option('display.unicode.east_asian_width',True) data=[[45,65,100],[56,45,50],[67,67,67]] index=['张三','李四','王五'] colum 阅读全文
posted @ 2022-11-19 13:00 蓝绝 阅读(47) 评论(0) 推荐(0) 编辑

上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 24 下一页