How to handle large ECG dataset? #994
Unanswered
BaiJonathan
asked this question in
Q&A
Replies: 1 comment
-
https://akt.obs.cn-east-3.myhuaweicloud.com/1699942534081277952.csv.zip the dataset. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
We get the 24 hours raw ECG data for the devices(250Hz). I want to analyze those data and produce HRV analysis.
my code snippet like this:
"
signal = pd.read_csv(filePath)
processed_data, info = nk.bio_process(signal["ECG"], sampling_rate=250)
results = nk.bio_analyze(processed_data, sampling_rate=frequency)
"
NO response.
but maybe it's too big. I can't get the result even after 30 mins.
so any recommendations ? how to handle large dataset?
Thanks in advance.
Beta Was this translation helpful? Give feedback.
All reactions