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

Rewrite reshaping functions to improve performance #285

Merged
merged 29 commits into from
Oct 10, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
9bf7e88
init
etiennebacher Oct 3, 2022
37e9bb7
deal with names_sep and names_pattern
etiennebacher Oct 4, 2022
ffb5e3e
remove unused helper
etiennebacher Oct 4, 2022
b868c6c
fix row issues, make benchmark
etiennebacher Oct 4, 2022
9d12a41
start rewriting data_to_wide
etiennebacher Oct 5, 2022
4945f8b
almost finished, two tests to fix
etiennebacher Oct 5, 2022
bb1f729
update benchmark
etiennebacher Oct 5, 2022
2fb2d38
minor
etiennebacher Oct 5, 2022
b05c2a4
fix tests
etiennebacher Oct 6, 2022
dd92c9a
polish code for data_to_wide
etiennebacher Oct 6, 2022
3d107ff
polish code for data_to_long
etiennebacher Oct 7, 2022
4ad020b
finish polishing, reorganize files
etiennebacher Oct 7, 2022
cfb35bf
put reprex in benchmark file
etiennebacher Oct 7, 2022
1ccdd02
minor
etiennebacher Oct 7, 2022
a9d16ae
minor
etiennebacher Oct 7, 2022
6473150
Merge branch 'main' into rewrite-reshape
etiennebacher Oct 7, 2022
9f8688e
bump version and news [skip ci]
etiennebacher Oct 7, 2022
b20255f
comment
etiennebacher Oct 7, 2022
8b9630e
Update R/data_to_long.R
etiennebacher Oct 7, 2022
dfccecc
add comment [skip ci]
etiennebacher Oct 7, 2022
bdf1393
Merge branch 'rewrite-reshape' of https://github.com/easystats/datawi…
etiennebacher Oct 7, 2022
8ed9bc5
fix test broken by modified message
etiennebacher Oct 7, 2022
8e7ab2c
add missing snapshot
etiennebacher Oct 7, 2022
7f11408
remove old.R
etiennebacher Oct 7, 2022
18cf17a
forgot to devtools::document()
etiennebacher Oct 7, 2022
40036e8
move benchmarks to /dev [skip ci]
etiennebacher Oct 10, 2022
60b9797
update branch [skip ci]
etiennebacher Oct 10, 2022
bf87604
Merge branch 'main' into rewrite-reshape
etiennebacher Oct 10, 2022
145bf68
fix typo in news [skip ci]
etiennebacher Oct 10, 2022
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
10 changes: 7 additions & 3 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,18 @@
=======
# datawizard 0.6.2.1

MAJOR CHANGES

* There is new a publication about the `{datawizard}` package:
* There is a new publication about the `{datawizard}` package:
Patil et al. (2022) <doi:10.21105/joss.04684>.

* `data_to_long()` and `data_to_wide()` have had significant performance improvements,
sometimes as high as a ten-fold speedup.

MINOR CHANGES

* When column names were misspelled, most functions now suggest which
exisiting columns possibly could be meant.
* When column names are misspelled, most functions now suggest which
existing columns possibly could be meant.

# datawizard 0.6.2

Expand Down
Loading