We have at least a few examples where we use pd.read_csv and grab some files using a url where we could use pandas-datareader instead -- For example, there is OECD health data in the cleaning notebook.
My inclination is to move of the data reading as possible to pandas-datareader because it is less likely to stay down than relying on a specific url.
Thoughts? I'm excited about some of their new additions!
We have at least a few examples where we use
pd.read_csvand grab some files using a url where we could usepandas-datareaderinstead -- For example, there is OECD health data in the cleaning notebook.My inclination is to move of the data reading as possible to
pandas-datareaderbecause it is less likely to stay down than relying on a specific url.Thoughts? I'm excited about some of their new additions!