如何用python實現行列互換?

來源:互聯網
上載者:User
本人生物資訊小白,最近想整理一批資料,需要excel裡面有兩萬多列,由於excel實現不了,所以打算用軟體或語言來解決,希望大神給與指導,在此感激不盡

回複內容:

基本的python吧:
In [1]: a=[[1, 2, 3], [4, 5, 6], [7, 8, 9], [10, 11, 12]]In [2]: print map(list,zip(*a))[[1, 4, 7, 10], [2, 5, 8, 11], [3, 6, 9, 12]]
[[row[i] for row in matrix] for i in range(len(matrix[0]))]用excel的話建議用pandas
import pandas as pddf = pd.read_excel('你的檔案路徑','第幾個sheet', header = False) #讀取檔案 比如 df = pd.read_excel('C:/your_data.xlsx',0, header = False)df_T = df.T #獲得矩陣的轉置df_T.to_excel('要儲存的檔案路徑', sheet_name='我的表名') #儲存檔案 比如 df_T.to_excel('C:/test.xlsx', sheet_name='sheet 1')
可以用numpy裡的matrix .T來轉置2W多列的話只能存成CSV格式了。
xlsx也就16384列

sample input:

1   2   3   4   56   7   8   9   1011  12  13  14  15
  • 聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

    如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.