• 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的帮助文档
    
    
    
     
  • 相关阅读:
    c# 执行windows模拟登录
    c#文件压缩解压
    c#文件上传下载功能实现
    .NET core3.1 使用Jwt保护api
    我所理解的闭包
    数组遍历for forEach for..in for..of
    变量提升
    微信小程序做radio,可以拖动进度条
    css:flex
    css常用布局
  • 原文地址:https://www.cnblogs.com/wodexk/p/10307593.html
Copyright © 2020-2023  润新知