-
-
Notifications
You must be signed in to change notification settings - Fork 437
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Getting Errors when trying to processa and analyze ppg_signal using ppg_processa and ppg_analyze #957
Comments
I also tried to run this
and I got this error in my notebook
|
I have similar issues. Cannot analyze my ppg signals unfortunately |
Hi! How long is your signal? Can you try something like this? There may be warnings, but it should complete and print out results: import neurokit2 as nk
SAMPLING_RATE = 64
data = nk.ppg_simulate(duration=20, sampling_rate=SAMPLING_RATE)
df, info = nk.ppg_process(data, sampling_rate=SAMPLING_RATE)
results = nk.ppg_analyze(df, sampling_rate=SAMPLING_RATE, method="interval-related")
print(results) |
My signal is 8 second long which gives me epoch error.
So I now double my signal and get SVD error
|
Is this still relevant? If so, what is blocking it? Is there anything you can do to help move it forward? This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. |
Maybe someone could tell me what I'm doing wrong or maybe it's a bug...
I tried to run tihs piece of code.
and I got these errors in the files
Also i'll print out the data that was used as input
this is ppg_signal:
I've also tried to not clean the data before hand tried using ppg_clean as well.
The text was updated successfully, but these errors were encountered: