How to get read excel data into an array with python

前端 未结 4 915
误落风尘
误落风尘 2021-01-05 10:06

In the lab that I work in, we process a lot of data produced by a 96 well plate reader. I\'m trying to write a script that will perform a few calculations and output a bar g

4条回答
  •  陌清茗
    陌清茗 (楼主)
    2021-01-05 10:30

    You could also try it with my wrapper library, which uses xlrd as well:

    import pyexcel as pe     # pip install pyexcel
    import pyexcel.ext.xls   # pip install pyexcel-xls
    your_matrix = pe.get_array(file_name=path_here) # done
    

提交回复
热议问题