Mercurial > repos > goeckslab > pycaret_compare
comparison feature_importance.py @ 4:4aa511539199 draft default tip
planemo upload for repository https://github.com/goeckslab/Galaxy-Pycaret commit cf47efb521b91a9cb44ae5c5ade860627f9b9030
author | goeckslab |
---|---|
date | Tue, 03 Jun 2025 19:31:16 +0000 |
parents | 915447b14520 |
children |
comparison
equal
deleted
inserted
replaced
3:02f7746e7772 | 4:4aa511539199 |
---|---|
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__) |