Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Math features migrate to numpy #774

Open
wants to merge 20 commits into
base: main
Choose a base branch
from

Commits on Jun 23, 2024

  1. Configuration menu
    Copy the full SHA
    22b03cf View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    43ac1e1 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    bce30b8 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    3e1893c View commit details
    Browse the repository at this point in the history
  5. add test for median

    olikra committed Jun 23, 2024
    Configuration menu
    Copy the full SHA
    f60867a View commit details
    Browse the repository at this point in the history
  6. add test for median and var

    olikra committed Jun 23, 2024
    Configuration menu
    Copy the full SHA
    4fde225 View commit details
    Browse the repository at this point in the history

Commits on Jun 24, 2024

  1. add doc for customfunction

    olikra committed Jun 24, 2024
    Configuration menu
    Copy the full SHA
    5310466 View commit details
    Browse the repository at this point in the history
  2. add customfunction

    olikra committed Jun 24, 2024
    Configuration menu
    Copy the full SHA
    df9012f View commit details
    Browse the repository at this point in the history
  3. finalize test_math_features.py

    olikra committed Jun 24, 2024
    Configuration menu
    Copy the full SHA
    be0e8bd View commit details
    Browse the repository at this point in the history
  4. finalize test_math_features.py

    olikra committed Jun 24, 2024
    Configuration menu
    Copy the full SHA
    2152ab8 View commit details
    Browse the repository at this point in the history
  5. remove section "if len(new_variables_names) != 1:" cause func is alwa…

    …ys an instance of list and the raise can never happen.
    olikra committed Jun 24, 2024
    Configuration menu
    Copy the full SHA
    ebba2c4 View commit details
    Browse the repository at this point in the history
  6. remove section "feature_names = [f"{self.func}_{'_'.join(varlist)}"]"…

    … in _get_new_features_name cause func is always an instance of list and the else gets never reached. Code Section was never covered by tests.
    olikra committed Jun 24, 2024
    Configuration menu
    Copy the full SHA
    47fa4cb View commit details
    Browse the repository at this point in the history
  7. improve test coverage

    olikra committed Jun 24, 2024
    Configuration menu
    Copy the full SHA
    2bfbc59 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    2b40910 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    d77d5ff View commit details
    Browse the repository at this point in the history

Commits on Jun 26, 2024

  1. Configuration menu
    Copy the full SHA
    2f4f6ab View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    923c2d4 View commit details
    Browse the repository at this point in the history

Commits on Jun 27, 2024

  1. add ddof to math_features init to allow complete controll about ddof …

    …(pandas default of ddof is 1, numpy default of ddof is 0) default is 1 for backward compatability
    olikra committed Jun 27, 2024
    Configuration menu
    Copy the full SHA
    2c92d43 View commit details
    Browse the repository at this point in the history
  2. add ddof to math_features init to allow complete controll about ddof …

    …(pandas default of ddof is 1, numpy default of ddof is 0) default is 1 for backward compatability
    olikra committed Jun 27, 2024
    Configuration menu
    Copy the full SHA
    9c7cf82 View commit details
    Browse the repository at this point in the history
  3. add testmethods for ddof

    olikra committed Jun 27, 2024
    Configuration menu
    Copy the full SHA
    63f26c9 View commit details
    Browse the repository at this point in the history