Esempio n. 1
0
def test_table_summary():
    df = Table(
        os.path.join(os.path.dirname(__file__), 'data', 'msleep_ggplot.csv'))
    print(df.summary())
    df1 = pd.read_csv(
        os.path.join(os.path.dirname(__file__), 'data',
                     'msleep_ignore_identifier.csv'))
    assert check.ignore_identifier(df).equals(df1) == False
Esempio n. 2
0
def test_table_summary():
    df = Table(
        os.path.join(os.path.dirname(__file__), 'data', 'msleep_ggplot.csv'))
    print(df.summary())