Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
1 つの列を持つ csv ファイルがあるとします。私はそれをプロットすることができます;
data = np.loadtxt(file) test = data[:,0] plot(test)
そして、テストと行番号 (エントリ) をプロットします。しかし、プロットできるように、この行番号を掛けたいと思います。
plot(test,row[i]*25)
行番号を配列化するよりも簡単な方法が必要だと思います。この問題を処理する Pythonic の方法はありますか?