This function builds QSAR (Quantitative Structure-Activity Relationship) models using multiple algorithms such as Multiple Linear Regression (MLR), Partial Least Squares (PLS), and Random Forest with k-fold cross-validation.
build_qsar_models(data_file, k = 5)A list containing MLR, PLS, and Random Forest models with their predictions, actuals, and formulas.
The file path of the dataset.
The number of folds for cross-validation (default is 5).