2021-06-24 08:06:01 +00:00
|
|
|
from Handle_emg_data import CSV_handler, get_min_max_timestamp
|
2021-06-23 09:01:02 +00:00
|
|
|
import matplotlib.pyplot as plt
|
2021-06-24 08:06:01 +00:00
|
|
|
#import Signal_prep
|
2021-06-22 19:30:55 +00:00
|
|
|
|
2021-06-23 09:01:02 +00:00
|
|
|
def test_df_extraction(emg_nr):
|
2021-06-22 19:30:55 +00:00
|
|
|
handler = CSV_handler()
|
|
|
|
|
2021-06-23 09:01:02 +00:00
|
|
|
file = "/Exp20201205_2myo_hardTypePP/HaluskaMarek_20201207_1810/myoLeftEmg.csv"
|
|
|
|
subject1_left_emg1 = handler.get_time_emg_table(file, emg_nr)
|
|
|
|
print(subject1_left_emg1.head)
|
2021-06-22 19:30:55 +00:00
|
|
|
|
2021-06-23 09:01:02 +00:00
|
|
|
return subject1_left_emg1, emg_nr
|
2021-06-22 19:30:55 +00:00
|
|
|
|
2021-06-23 13:56:35 +00:00
|
|
|
def test_load_func():
|
|
|
|
test_dict = Signal_prep.load_user_emg_data()
|
|
|
|
subject2_container = test_dict[2]
|
|
|
|
print(subject2_container.data_dict['left'][1])
|
|
|
|
|
2021-06-24 08:06:01 +00:00
|
|
|
def test_min_max_func():
|
|
|
|
handler = CSV_handler()
|
|
|
|
file = "/Exp20201205_2myo_hardTypePP/HaluskaMarek_20201207_1810/myoLeftEmg.csv"
|
|
|
|
df = handler.get_time_emg_table(file, 1)
|
|
|
|
min, max = get_min_max_timestamp(df)
|
|
|
|
print(min)
|
|
|
|
print(max)
|
|
|
|
|
|
|
|
test_min_max_func()
|