Changelog
Source:NEWS.md
brolgar 1.0.1 “Conservation status: Least Concern” (2024-05-07)
- This is a patch release that fixed a couple of small issues that got it removed from CRAN
brolgar 1.0.0 “On the QLD coat of arms since 1977” (2023-02-06)
CRAN release: 2023-02-07
This is a major release to signify that this version is associated with a publication (woo!) for this paper in the R Journal. However, this release only represents minor changes, summarised below:
- small fix for dev dplyr 113
- minor updates to GH actions and website.
brolgar 0.1.0 “Antigone rubicunda”
CRAN release: 2020-12-16
- fix warning bug in
keys_near
related to factors - Add
feat_diff_summary()
functions to help summarise diff(). Useful for exploring the time gaps in theindex
. (#100) - sample functions now work with multiple keys (#85, #89) (Thanks to @earowang and @deanmarchiori for their help with this.)
-
facet_sample()
now has a default of 3 per plot - resolve features(data ,.key, n_obs) error (#71)
- For
near_quantile()
, thetol
argument now defaults to 0.01. - provide an S3 generic for
tbl_ts
objects forkeys_near()
- #76 - Add new dataset,
pisa
containing a short summary of the PISA dataset from https://github.com/ropenscilabs/learningtower for three (of 99) countries - add helper functions
index_regular()
andindex_summary()
to help identify index variables
brolgar 0.0.4.9000
- remove
feasts
from dependencies as the functions required inbrolgar
are actually infabletools
. - add
nearest_lgl
andnearest_qt_lgl
- Gave more verbose names to the
wages_ts
data. - renamed
sample_n_obs()
tosample_n_keys()
andsample_frac_keys()
- renamed
add_k_groups()
tostratify_keys()
- removed many of the
l_<summary>
functions in favour of thefeatures
approach. - rename
l_summarise_fivenum
tol_summarise
, and have an option to pass a list of functions. - rename
l_n_obs()
ton_key_obs()
- rename
l_slope()
tokey_slope()
- added
monotonic
summaries andfeat_monotonic
- rename
l_summarise()
tokeys_near()
- make monotonic functions return FALSE if length == 1.
- add
monotonic
function, which returns TRUE if increasing or decreasing, and false otherwise. - re export
as_tsibble()
andn_keys()
from `tsibble - Data
world_heights
gains a continent column - Implement
facet_strata()
to create a random group of sizen_strata
to put the data into (#32). Add support foralong
, andfun
. - Implement
facet_sample()
to create facetted plots with a set number of keys inside each facet. (#32). -
add_
functions now return atsibble()
(#49). - Fixed bug where
stratify_keys()
didn’t assign an equal number of keys per strata (#55) - Update
wages_ts
dataset to now just bewages
data, and remove previoustibble()
version ofwages
(#39). - Add
top_n
argument tokeys_near
to provide control over the number of observations near a stat that are returned. - change
world_heights
toheights
. - remove function
n_key_obs()
in favour of usingn_obs()
(#62) - remove function
filter_n_obs()
in favour of cleaner workflow withadd_n_obs()
(#63)
brolgar 0.0.0.9990
- Added the
world_heights
dataset, which contains average male height in centimetres for many countries. #28 - created
near_
family of functions to find values near to a quantile or percentile. So far there arenear_quantile()
,near_middle()
, andnear_between()
(#11).-
near_quantile()
Specify some quantile and then find those values around it (within some specified tolerance). -
near_middle()
Specify some middle percentile value and find values within given percentiles. -
near_between()
Extract percentile values from a given percentile to another percentile.
-
- Create
add_k_groups()
(#20) to randomly split the data into groups to explore the data. - Add
sample_n_obs()
andsample_frac_obs()
(#19) to select a random group of ids. - Add
filter_n_obs()
to filter the data by the number of observations #15 - Remove unnecessary use of
var
, inl_n_obs()
, since it only needs information on theid
. Also gets a nice 5x speedup with simpler code - calculate all longnostics (#4)
- use the word
longnostic
instead oflognostic
(#9) -
l_slope
now returnsl_intercept
andl_slope
instead ofintercept
andslope
. -
l_slope
now takes bare variable names - Renamed
l_d1
tol_diff
and added a lag argument. This makesl_diff
more flexible and the function more clearly describes its purpose. - Rename
l_length
tol_n_obs
to more clearly indicate that this counts the number of observations. - Create
longnostic
function to create longnostic functions to package up reproduced code inside thel_
functions. - Added a
NEWS.md
file to track changes to the package.