'How do you launch from a pc (excel, cmd) an azure notebook?
How do you launch from a pc (excel, cmd) an azure notebook? Thanks
Solution 1:[1]
Here is one of the workaround
If want to read it locally
import pandas as pd
df = pd.read_excel (r'Path where the Excel file is stored\File name.xlsx', sheet_name='your Excel sheet name')
print (df)
If you are trying to read from Azure Storage Account
ReadExcel=pd.read_excel('https://<account name>.dfs.core.windows.net/<file system>/<path>?<sas token>')
print(ReadExcel)
if you are trying to read from the instance
import pandas as pd
from pandas import read_csv
data = pd.read_csv("input.csv")
print(data)
print("Dataset read successfully")

REFERENCES: Azure Jupyter Notebook
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 |
