Stage2024/tracking_sources/core_functions.py

6 lines
119 B
Python
Raw Normal View History

2024-06-28 14:08:49 +02:00
import pandas as pd
def read_table(path):
df=pd.read_csv(path)
return df.shape[0], df["percent"], df["angle"]