We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The method for creating test data for the monthly plots should be extended with a start and end date parameter.
Both parameter are set with proper default values.
File: dataset/item_handler.py
New Method Signature: def create_dummy_group_date_values(num_groups=3, max_value=100, start_date='2018-12-01', end_date='2018-12-31')
Tip about the Implementation...
Since the project is already using the pandas framework it should also be used for generating the specific time range in days:
https://pandas.pydata.org/pandas-docs/stable/user_guide/timeseries.html#generating-ranges-of-timestamps
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The method for creating test data for the monthly plots should be extended with a start and end date parameter.
Both parameter are set with proper default values.
File: dataset/item_handler.py
New Method Signature: def create_dummy_group_date_values(num_groups=3, max_value=100, start_date='2018-12-01', end_date='2018-12-31')
Tip about the Implementation...
Since the project is already using the pandas framework it should also be used
for generating the specific time range in days:
https://pandas.pydata.org/pandas-docs/stable/user_guide/timeseries.html#generating-ranges-of-timestamps
The text was updated successfully, but these errors were encountered: