-
Notifications
You must be signed in to change notification settings - Fork 2
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
Ensured Datasets Are Bundled Properly #14
Comments
As
When an individual wants to use
then the individual should expect to have accessible these data objects. The code in packages = [{include = "forecasttools"}]
include = [
{ path = "forecasttools/location_table.parquet", format = "sdist" },
{ path = "forecasttools/location_table.parquet", format = "wheel" },
{ path = "forecasttools/example_flusight_submission.parquet", format = "sdist" },
{ path = "forecasttools/example_flusight_submission.parquet", format = "wheel" },
{ path = "forecasttools/example_flu_forecast_wo_dates.nc", format = "sdist" },
{ path = "forecasttools/example_flu_forecast_wo_dates.nc", format = "wheel" },
{ path = "forecasttools/example_flu_forecast_w_dates.nc", format = "sdist" },
{ path = "forecasttools/example_flu_forecast_w_dates.nc", format = "wheel" },
{ path = "forecasttools/nhsn_hosp_COVID.parquet", format = "sdist" },
{ path = "forecasttools/nhsn_hosp_COVID.parquet", format = "wheel" },
{ path = "forecasttools/nhsn_hosp_flu.parquet", format = "sdist" },
{ path = "forecasttools/nhsn_hosp_flu.parquet", format = "wheel" },
] The following can be used to test whether the data objects are properly packaged:
The following was outputted:
import forecasttools
print(forecasttools.location_table)
print(forecasttools.nhsn_hosp_flu)
print(forecasttools.nhsn_hosp_COVID)
print(forecasttools.nhsn_flu_forecast_wo_dates)
print(forecasttools.nhsn_flu_forecast_w_dates)
print(forecasttools.example_flusight_submission)
|
These datasets include
location_data.csv
example_forecast.nc
(NETCDF)nhsn_fit_COVID.csv
nhsn_fit_flu.csv
example_flusight_submission.csv
The text was updated successfully, but these errors were encountered: