Loading

摘要: 1. 删除指定行 new_df = df.drop(index='行索引') new_df = df.drop('行索引', axis='index') new_df = df.drop('行索引', axis=0) 2. 删除指定的多行 new_df = df.drop(index=['行索引1' 阅读全文
posted @ 2021-04-27 12:28 Convict 阅读(8535) 评论(0) 推荐(0) 编辑
摘要: (一)Series初始化 1.通过列表,index自动生成 se = pd.Series(['Tom', 'Nancy', 'Jack', 'Tony']) print(se) 2.通过列表,指定index se = pd.Series(['Tom', 'Nancy', 'Jack', 'Tony' 阅读全文
posted @ 2021-04-27 11:23 Convict 阅读(2287) 评论(0) 推荐(0) 编辑
摘要: 1. Series Series通俗来讲就是一维数组,索引(index)为每个元素的下标,值(value)为下标对应的值 例如: arr = ['Tom', 'Nancy', 'Jack', 'Tony'] 那在Series中为:index为0,value为Tomindex为1,value为Nanc 阅读全文
posted @ 2021-04-27 10:22 Convict 阅读(382) 评论(0) 推荐(0) 编辑