I am using the Databricks community edition and working through the ML intro tutorial.
I am able to %fs ls databricks-datasets/COVID/covid-19-data/us-states.csv
, but not able to read it through pandas
>>> df = pd.read_csv("/dbfs/databricks-datasets/COVID/covid-19-data/us-states.csv")
FileNotFoundError: [Errno 2] File /dbfs/databricks-datasets/COVID/covid-19-data/us-states.csv does not exist: '/dbfs/databricks-datasets/COVID/covid-19-data/us-states.csv'
Directly open
the README.md
file in databricks dataset also failed
>>> f = open("/dbfs/databricks-datasets/README.md", "r")
FileNotFoundError: [Errno 2] No such file or directory: '/dbfs/databricks-datasets/README.md'
Any thoughts or suggestions?