zoukankan      html  css  js  c++  java
  • Numpy:txt文本数据导入-- numpy.genfromtxt( )

    Numpy的使用:

    一、数据导入:

    world_alcohol.txt内的数据结构图:



    数据导入python代码:numpy.genfromtxt()
    import numpy
    
    print("-----------------书写格式1---------------------")
    # numpy.genfromtxt()可以将文本里每行的数据导入,delimiter=","表示每行的数据之间用逗号分隔符
    # 如果每行的元素有字符串,要用str类型导入,否则无法显示
    world_alcohol = numpy.genfromtxt("world_alcohol.txt", delimiter=",",dtype=str)
    
    print(type(world_alcohol))   # 返回:<class 'numpy.ndarray'>
    
    print(world_alcohol)
    
    print("---------------书写格式2------------------------")
    # dtype="U75"   :表示以字符串类型导入(75是导入的字符个数为75)
    # skip_header=1 :表示从txt的第1行导入,即表头(第0行)不导入
    world_alcohol = numpy.genfromtxt("world_alcohol.txt", delimiter=",", dtype="U75", skip_header=1)
    
    print(world_alcohol)
    
    # print(help(numpy.genfromtxt))  # 查看numpy.genfromtxt的帮助文档
    
    
    
     
  • 相关阅读:
    E
    D
    C
    B
    Python
    IDEA 设置资源目录
    光猫指示灯含义
    IO模型
    Linux 总目录
    Linux python 使用
  • 原文地址:https://www.cnblogs.com/wodexk/p/10307593.html
Copyright © 2011-2022 走看看