import pandas as pd def read_table(path): df=pd.read_csv(path) return df.shape[0], df["percent"], df["angle"]