-
Dear All I have one simple question about EDA_Phasic. I got time-course EDA_Phasic data by using python code as follows. eda_signals, info = nk.eda_process(df['SC - GSR100C'], sampling_rate=250) # Process the EDA data
eda_phasic = eda_signals.loc[:,['EDA_Phasic']] In this case, what the 'EDA_Phasic' data mean? Is that "Non-specific SCR" or "Specific SCR"? Thank you in advance! Sincerely, |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 4 replies
-
Hi @RyotaTKN Apologize for the late response. Here, EDA phasic refers to the phasic components. In order to identify the SCR features, nk.eda_peaks() function can be applied on the The |
Beta Was this translation helpful? Give feedback.
-
Thanks for your reply! I understood that the specific-SCR can be obtained by using nk.eda_eventrelated(). Actually, I'd like to get the mean and the time-series change of the SCR while watching 2-minute video (based on the Zickfeld et al., 2019, Psychophysiology). Hence, I got the EDA Phasic component by using the Python code above. In this case, is the EDA Phasic data specific? or non-specific? (or is this question itself meaningless?) I'm sorry I didn't make it clear enough. Sincerely, |
Beta Was this translation helpful? Give feedback.
Hi @RyotaTKN
Apologize for the late response. Here, EDA phasic refers to the phasic components. In order to identify the SCR features, nk.eda_peaks() function can be applied on the
eda_phasic
component.The
nk.eda_peaks()
will return all SCRs, both specific and non-specific. For specific SCR or event-related SCR, you can look at the documentation of our nk.eda_eventrelated() function for more info. Hope that helps!