To install py-hctsa locally, you can call:
pip install -e .
This will install pyhctsa in development mode.
A FeatureCalculator
object must first be instantiated using:
from pyhctsa.FeatureCalculator.calculator import FeatureCalculator
calc = FeatureCalculator()
By default, the FeatureCalculator
will initialize the full feature set (> 800 master operations). If you would like to specify a custom feature set, you can pass the corresponding configuration .YAML file as an argument to the FeatureCalculator
:
customCalc = FeatureCalculator(configPath="subset.yaml")
The number of master operations (callable functions) specified by the .yaml will be displayed for verification e.g., Loaded 813 master operations.
Once a FeatureCalculator
has been initialized, you can call the extract
method to compute time series features on either a single time-series instance or a list of multiple instances:
from pyhctsa.Utilities.utils import get_dataset
e1000 = get_dataset()
data = e1000[0] # your data as a list, array, or pandas series
res = calc.extract(data)
Note that each time-series instances does not have to be the same length to compute a vector of features.
The results of the extraction will be returned in a pandas dataframe of shape
You can also inspect the quality of the extracted feature values by calling calc.summary()
.
If you would like to run individual operations on your data, you can access the corresponding functions from their respective modules directly.
For example, to compute the RawHRVMeas
features on your data, the RawHRVMeas
master operation can be accessed from the Medical
module:
from pyhctsa.Operations.Medical import RawHRVMeas
data = ... # your ArrayLike data
res = RawHRVMeas(data) # result as either a dictionary or scalar value
Note that individual operations can only be called directly on individual time-series instances.
Some features require Java (JDK) to be installed. If you encounter a JVM not found
error:
-
Ensure Java Development Kit (JDK) is installed on your system
- Download from Oracle or use OpenJDK
- Minimum version required: JDK 11
-
Before importing pyhctsa, set the
JAVA_HOME
environment variable using the location of the JDK installation on your system:
import os
os.environ['JAVA_HOME'] = "C:\Program Files\Java\jdk-11" # replace with relevant path
from pyhctsa.FeatureCalculator.calculator import FeatureCalculator
# rest of your code...