How to handle large ECG dataset? #994
Unanswered
BaiJonathan
asked this question in
Q&A
Replies: 1 comment 1 reply
|
https://akt.obs.cn-east-3.myhuaweicloud.com/1699942534081277952.csv.zip the dataset. |
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
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.
All reactions