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

fear(#23): Replace filterIncompleteRecords boolean with Imputation Enum for Enhanced Data Handling #61

Closed
wants to merge 4 commits into from

Commits on Oct 18, 2023

  1. feat(23): add package for handling incomplete records

    This commit introduces the 'handler' package under 'de.eudx.data' to handle the cleaning and processing
    of incomplete records within a dataset, in correspondence with issue Samyssmile#23.
    
    Changes Made:
    - Added 'handler' package under 'de.edux.data'
    - Introduced 'EIncompleteRecordsHandlerStratetgy' enum with the constans:
      DO_NOT_HANDLE, DROP_RECORDS, FILL_RECORDS_WITH_AVERAGE
    - Introduced 'IIncompleteRecordsHandler' interface
    - Implemented 'DropIncompleteRecordsHandler' class
    - Implemented 'AverageFillIncompleteRecordsHandler' class
    - Implemented 'DoNotHandleIncompleteRecords' class because
      of DataProcessorTest.testLoadDataWithoutNormalizationAndShuffling()
    - Started to write the tests for the above mentioned classes and their methods
    - Revired the existing codebase to be compatible with the new enum
    acsolle66 committed Oct 18, 2023
    Configuration menu
    Copy the full SHA
    85eebf8 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    b72612f View commit details
    Browse the repository at this point in the history

Commits on Oct 19, 2023

  1. Configuration menu
    Copy the full SHA
    af01c5a View commit details
    Browse the repository at this point in the history

Commits on Oct 20, 2023

  1. feat(Samyssmile#23): Prepare

    Samuel Abramov committed Oct 20, 2023
    Configuration menu
    Copy the full SHA
    8c969fd View commit details
    Browse the repository at this point in the history