Probabilistic Targeted Factor Analysis
Project description
Probabilistic Targeted Factor Analysis (PTFA)
PTFA is a probabilistic extension of Partial Least Squares (PLS), designed to extract latent factors from predictors (X) and targets (Y) for optimal prediction. It leverages an Expectation-Maximization (EM) algorithm for robust parameter estimation, accommodating challenges such as missing data, stochastic volatility, and dynamic factors.
The framework balances flexibility and efficiency, providing an alternative to traditional methods like PCA and standard PLS by incorporating probabilistic foundations.
Features
- Joint estimation of latent factors and parameters.
- Robust against noise, missing data, and model uncertainty.
- Extensible to stochastic volatility, mixed-frequency data and dynamic factor models.
- Competitive performance in high-dimensional forecasting tasks.
Installation
You can install PTFA from PyPI:
pip install ptfa
Usage
Here is a quick example of how to use the ProbabilisticTFA class:
import numpy as np
from ptfa import ProbabilisticTFA
# Example data: predictors (X) and targets (Y)
X = np.random.rand(100, 10) # 100 observations, 10 predictors
Y = np.random.rand(100, 2) # 100 observations, 2 targets
# Initialize PTFA model with desired number of components
model = ProbabilisticTFA(n_components=3)
# Fit the model
model.fit(X, Y)
# Calculate in-sample predictions
Y_predicted = model.fitted(X, Y)
# Calculate out-of-sample forecasts
Y_forecast = model.predict(X)
print("Predicted targets:")
print(Y_predicted)
Contributing
Feel free to open issues or contribute to the repository through pull requests. We welcome suggestions and improvements.
Licence
This project is licensed under the MIT License.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file ptfa-0.2.4.tar.gz
.
File metadata
- Download URL: ptfa-0.2.4.tar.gz
- Upload date:
- Size: 16.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 42d598f9e851e55e336fe065e7853abf16a6f9e8115df19f074ffb4ba7b166ae |
|
MD5 | a08f5a9c4fee490665b248bb65e281a3 |
|
BLAKE2b-256 | 9f4fb618681d1a6743f9db616a9a126602d2bf20c1d4678c256fa96fcdb5bb71 |
File details
Details for the file ptfa-0.2.4-py3-none-any.whl
.
File metadata
- Download URL: ptfa-0.2.4-py3-none-any.whl
- Upload date:
- Size: 18.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0ec3816ce9e9d3bf5fcc8e989a3d47e6e805ee13cfcb8dfe4ebb1937a1c193ae |
|
MD5 | 7ab999f40deb028994d2f590f712dbb4 |
|
BLAKE2b-256 | be7e340f82353243301d9a3f9644961b39eaae82b92481598c77365e74bcb204 |