I am trying to load an excel file online. This this my path directory. C:\Users\Don.A.Charles\Downloads\Practice\sorted_data.xlsx
However, I am trying to load the file through Jupyter Notebook Online with no success https://jupyter.org/try-jupyter/lab/
Can anyone suggest anything to amend the code to allow the program to load the data? This is the code below
import pandas as pd import numpy as np from sklearn import preprocessing import matplotlib.pyplot as plt df=pd.read_excel(r"C:\Users\Don.A.Charles\Downloads\Practice\sorted_data.xlsx") I am receiving the error FileNotFoundError: [Errno 44] No such file or directory: 'C:\Users\Don.A.Charles\Downloads\Practice\sorted_data.xlsx'