Advertisement
Guest User

Untitled

a guest
Jun 19th, 2019
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. import pandas as pd
  2. import matplotlib.pyplot as plt
  3. excel_file = 'file1.xlsx'
  4. file1 = pd.read_excel(excel_file)
  5.  
  6. file1.head()
  7.  
  8. plt.plot(x,y1,y2)
  9.  
  10. plt.xlabel('wavelenghts')
  11. plt.ylabel('reflectivity')
  12. plt.legend(loc='upper left')
  13. plt.show
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement