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

90 bump version 0 2 0 9000 #91

Merged
merged 2 commits into from
Dec 5, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: SPCreporter
Title: Creates Metric Reports using Statistical Process Control in the NHS style
Version: 0.2.0
Version: 0.2.0.9000
Authors@R: c(
person("Tom", "Smith",, "[email protected]", role = c("aut", "cre")),
person("Fran", "Barton",, "[email protected]", role = "aut"))
Expand Down
31 changes: 21 additions & 10 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,18 +1,19 @@
# SPCreporter 0.2.0
# SPCreporter 0.2.0.9000

## Breaking changes
## Feature addition

Associated with the addition of rare-event charts:
* The `report_config` now includes a mandatory column `spc_chart_type`. Valid values in this column are "xmr" or "t".
* The `measure_data` now includes a mandatory list item (or excel worksheet) called "events".
* The `data_cutoff_dttm` argument has been moved from `spcr_make_report()` to `spcr_make_data_bundle()` to support the calculation of the final plotted point, which is placed to illustrate what would happen were an event to happen on this date.
## Useability

## Bugfix

---

# SPCreporter 0.2.0

Associated with the addition of pdf and csv output types:
* The the argument `export_csv` to `spcr_make_report()` has been disused and replaced with `output_type`.

## Feature addition

* Added the ability to create rare-event charts of type "T" (time-between).
* **BREAKING CHANGE** - Added the ability to create rare-event charts of type "T" (time-between).
* The report is now mobile friendly, and works on very narrow screens. The breakpoint from wide to narrow layout is 768px.
* The ability to add commentary was added previously, but now the method is demonstrated in the example config docs.
* Added explanation of the data-quality icons to the footer of the report.
Expand All @@ -21,14 +22,24 @@ Associated with the addition of pdf and csv output types:
## Useability

* Added the optional columns to the example excel config documents, to aid onboarding for new users.
* BREAKING CHANGE - the argument `export_csv` to `spcr_make_report()` has been disused and replaced with `output_type` which is now a vector of the required output types. Current valid options are "html", "pdf", and "csv". This method will allow addition of more report types in future.
* **BREAKING CHANGE** - The argument `export_csv` to `spcr_make_report()` has been disused and replaced with `output_type` which is now a vector of the required output types. Current valid options are "html", "pdf", and "csv". This method will allow addition of more report types in future.
* File size reduced by approx 30% by handling plot resolution differently, and by a further 0.6MB by removing javascript, css, and font files bundled as part of RMarkdown. As a result of the latter change the template behaves less like standard Rmd and is more reliant on custom CSS, but as it is rarely edited the file size reduction is worth this trade-off.

## Bugfix

* All spaces in the report name are now replaced with underscores. Previously only the first space was replaced.
* The CSV output now respects the `output_directory` argument. Previously this file was saved in the working directory regardless of the output_directory argument.

## Details of breaking changes

Associated with the addition of rare-event charts:
* The `report_config` now includes a mandatory column `spc_chart_type`. Valid values in this column are "xmr" or "t".
* The `measure_data` now includes a mandatory list item (or excel worksheet) called "events".
* The `data_cutoff_dttm` argument has been moved from `spcr_make_report()` to `spcr_make_data_bundle()` to support the calculation of the final plotted point, which is placed to illustrate what would happen were an event to happen on this date.

Associated with the addition of pdf and csv output types:
* The the argument `export_csv` to `spcr_make_report()` has been disused and replaced with `output_type`.

---

# SPCreporter 0.1.6
Expand Down