FAQ
These FAQs aim to cover the basic questions new users might have when using pyspi.
How many SPIs should I measure for my dataset?
from pyspi import Calculator
data = ... # your dataset
calc = Calculator(dataset=data, subset="sonnet") # or calc = Calculator(subset="fast")
What pre-processing steps are applied to my data?
# skip detrending, keep z-scoring
calc = Calculator(dataset=data, detrend=False)
# skip z-scoring, keep detrending
calc = Calculator(dataset=data, zscore=False, detrend=True)
# disable both detrending and zscoring
calc = Calculator(dataset=data, zscore=False, detrend=False)
How long does pyspi take to run?


How can I contribute to pyspi?
Do I need to normalise my dataset before applying pyspi?
Can I distribute pyspi calculations across a cluster?
How can I cite pyspi in my work?
Can I run pyspi on my operating system?
Are there examples showcasing a complete pipeline using pyspi?
How can I save my results from pyspi?
Last updated