1. python数据分析快速入门教程2-pandas数据结构

    本书目录

    创建数据

    Series和python的列表类似。DataFrame则类似值为Series的字典。

    create.py

    #!/usr/bin/env python3
    # -*- coding: utf-8 -*-
    # create.py
    
    import pandas as pd
    
    print("\n\n创建序列Series")
    s = pd.Series(['banana', 42])
    print(s)
    
    print("\n\n指定索引index创建序列Series")
    s = pd.Series(['Wes McKinney', 'Creator of Pandas'], index=['Person', 'Who'])
    print(s)
    
    # 注意:列名未必为执行的顺序,通常为按字母排序
    print …
    read more

« Page 2 / 2

links