-
Notifications
You must be signed in to change notification settings - Fork 161
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
Challenge: NEAZYIT submission. #168
Open
NEAZYIT
wants to merge
4
commits into
geeksblabla:main
Choose a base branch
from
NEAZYIT:NEAZYIT
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- Introduced a modular data processing pipeline using Dask for efficient handling of large datasets. - Implemented the following functions for distinct tasks: 1. ead_data(input_file): Reads CSV data using Dask, handling decoding issues and creating a Dask DataFrame. 2. �alidate_prices(data): Filters out prices outside the range of 1.00 to 100.00. 3. clean_data(data): Removes missing values and duplicate entries, providing a cleaned Dask DataFrame. 4. group_and_aggregate(data): Groups data by city and computes the total prices, returning a Dask Series. 5. sort_and_select_top_products(data, cheapest_city): Filters data for the cheapest city, sorts, and selects the top 5 products. 6. write_results(output_file, cheapest_city, total_price, sorted_products): Writes results to an output file. - The main process_data(input_file, output_file) function orchestrates these steps, ensuring a structured flow. - Implemented a logging system that captures errors and important information for debugging and monitoring. - Maintained clarity and adherence to best practices for readability and maintainability. To test, run the provided example with 'input.txt' as the input file and 'output.txt' as the output file.
- Introduced a modular data processing pipeline using Dask for efficient handling of large datasets. - Implemented the following functions for distinct tasks: 1. ead_data(input_file): Reads CSV data using Dask, handling decoding issues and creating a Dask DataFrame. 2. �alidate_prices(data): Filters out prices outside the range of 1.00 to 100.00. 3. clean_data(data): Removes missing values and duplicate entries, providing a cleaned Dask DataFrame. 4. group_and_aggregate(data): Groups data by city and computes the total prices, returning a Dask Series. 5. sort_and_select_top_products(data, cheapest_city): Filters data for the cheapest city, sorts, and selects the top 5 products. 6. write_results(output_file, cheapest_city, total_price, sorted_products): Writes results to an output file. - The main process_data(input_file, output_file) function orchestrates these steps, ensuring a structured flow. - Implemented a logging system that captures errors and important information for debugging and monitoring. - Maintained clarity and adherence to best practices for readability and maintainability. To test, run the provided example with 'input.txt' as the input file and 'output.txt' as the output file.
Please clean up your PR! You are adding too many unnecessary files. Follow the submission guide in the readme |
I have cleaned up my PR. Could you please check it now? |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
No description provided.