Mercurial > repos > goeckslab > pycaret_predict
comparison feature_importance.py @ 3:ccd798db5abb draft default tip
planemo upload for repository https://github.com/goeckslab/Galaxy-Pycaret commit cf47efb521b91a9cb44ae5c5ade860627f9b9030
author | goeckslab |
---|---|
date | Tue, 03 Jun 2025 19:31:06 +0000 (31 minutes ago) |
parents | 1f20fe57fdee |
children |
comparison
equal
deleted
inserted
replaced
2:0314dad38aaa | 3:ccd798db5abb |
---|---|
1 import base64 | 1 import base64 |
2 import logging | 2 import logging |
3 import os | 3 import os |
4 | 4 |
5 import matplotlib.pyplot as plt | 5 import matplotlib.pyplot as plt |
6 | |
7 import pandas as pd | 6 import pandas as pd |
8 | |
9 from pycaret.classification import ClassificationExperiment | 7 from pycaret.classification import ClassificationExperiment |
10 from pycaret.regression import RegressionExperiment | 8 from pycaret.regression import RegressionExperiment |
11 | 9 |
12 logging.basicConfig(level=logging.DEBUG) | 10 logging.basicConfig(level=logging.DEBUG) |
13 LOG = logging.getLogger(__name__) | 11 LOG = logging.getLogger(__name__) |