2016-07-05 23 views

Antwort

1

Verwenden Voraus

vielen Dank zu arbeiten, um die Datei zu lesen, und dann in einer Schleife plottet nur, wie dies:

import numpy as np 
import matplotlib.pyplot as plt 

data = np.genfromtxt('data.txt') 

fig, ax = plt.subplots(1) 

for i in range(data.shape[1]-1): 
    ax.plot(data[:,0],data[:,i+1]) 

plt.show() 
+0

genial !! Danke vielmals –