Skip to content

Commit

Permalink
Remove star import in jmetal.lab.statistical_test.functions (jMetal#145)
Browse files Browse the repository at this point in the history
This helps with statical analysis tools like mypy or flake8.
  • Loading branch information
rnestler committed Mar 14, 2024
1 parent af957b0 commit 6b75b6d
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion jmetal/lab/statistical_test/functions.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,18 @@
from scipy.stats import binom, chi2, f, norm

from jmetal.lab.statistical_test.apv_procedures import *
import numpy as np
import pandas as pd

from jmetal.lab.statistical_test.apv_procedures import (
bonferroni_dunn,
holm,
hochberg,
holland,
finner,
li,
shaffer,
nemenyi,
)


def ranks(data: np.array, descending=False):
Expand Down

0 comments on commit 6b75b6d

Please sign in to comment.