我是靠谱客的博主 热心西牛,最近开发中收集的这篇文章主要介绍python中的Series索引,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

pandas中的Series可使用字符串型作为索引

import pandas as pd
import numpy as np
from pandas import Series
price=np.linspace(10,50,5,dtype=np.int32)
#用numpy中的linspace在区间【10,50】平均生成五个数,类型为numpy中的int32型
series_fruit=Series(price,index=mlist)
#创建Series,指定mlist作为索引
series_fruit

 

按照索引0,1,2,3....切片

series_fruit[1:4]

按照mlist切片 ,‘pinapple’到'peach’

series_fruit['pineapple':'peach']
#Index(['orange', 'pineapple', 'blueberry', 'pear', 'peach'], dtype='object'

 

最后

以上就是热心西牛为你收集整理的python中的Series索引的全部内容,希望文章能够帮你解决python中的Series索引所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(52)

评论列表共有 0 条评论

立即
投稿
返回
顶部