Advertisement
Guest User

Untitled

a guest
Sep 19th, 2019
126
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. import pandas as pd
  2. from pandas.plotting import andrews_curves
  3. import matplotlib.pyplot as plt
  4.  
  5. excel_file = 'CableLog.xlsx'
  6. df = pd.read_excel(excel_file)
  7. print(df)
  8.  
  9. plt.figure()
  10. andrews_curves(df, 'Quality Test')
  11.  
  12. plt.show()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement