Advertisement
Guest User

Untitled

a guest
Feb 20th, 2019
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. pd1=pd.read_csv('data1.csv')
  2. pd2=pd.read_csv('data2.csv')
  3.  
  4. samples = [pd1,pd2]
  5.  
  6. for i, df in enumerate(samples):
  7. samples[i] = samples[i].truncate(after=99, axis="rows")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement