Great_expectations: GE should support `read_excel` and `read_table`

Created on 6 Jul 2018  路  3Comments  路  Source: great-expectations/great_expectations

Implementation is (probably) parallel to read_csv:

def read_csv(
    filename,
    dataset_class=dataset.pandas_dataset.PandasDataset,
    expectations_config=None,
    *args, **kwargs
):
    df = pd.read_csv(filename, *args, **kwargs)
    df = _convert_to_dataset_class(df, dataset_class, expectations_config)
    return df

Most helpful comment

I can take a crack at this one!

All 3 comments

I'm working with a lot of SAS datasets nowadays (ugh). Would a read_sas be welcomed?

馃挴

I can take a crack at this one!

Was this page helpful?
0 / 5 - 0 ratings