Advertisement
Guest User

Untitled

a guest
Nov 20th, 2019
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. import panda as pd
  2.  
  3. data = pd.read_csv("fer2013.csv")
  4. test = data.loc[data["emotion"].isin(['0', '3', '6'])
  5. dx = test.to_numpy()
  6.  
  7. test.to_csv('DataSplit.csv', sep='\t')
  8. print(test)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement