27dataframe 27 object has no attribute 27as matrix 27

Solutions on MaxInterview for 27dataframe 27 object has no attribute 27as matrix 27 by the best coders in the world

showing results for - " 27dataframe 27 object has no attribute 27as matrix 27"
Adriana
24 May 2017
1#As of Pandas 1.0 use .to_numpy() other ways are deprecated
2df = pd.read_excel('[Path to Xlsx]',sheet_name='[name of xl sheet]')
3df.to_numpy()