This repository was archived by the owner on Apr 14, 2022. It is now read-only.
This repository was archived by the owner on Apr 14, 2022. It is now read-only.
Pandas read_csv etc returning wrong types #981
Open
Description
With 0.2.56 of LS:
import pandas as pd
df = pd.read_csv('foo')
returns TextFileReader as the type for df.
import pandas as pd
df = pd.read_excel(‘foo’)
returns df is an OrderedDict
import pandas as pd
df = pd.read_parquet(‘foo’)
df doesn’t seem to have a type.
I expect others are weird too. They should all be DataFrame.