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

Reshape #199

Merged
merged 20 commits into from
Nov 15, 2024
Merged

Reshape #199

merged 20 commits into from
Nov 15, 2024

Conversation

gergelyattilakiss
Copy link
Collaborator

Summary

Implement reshape commands

Related Issues

Number of Passing Unit Tests

Tests passing: 520/520

Checklist

  • Version number has been bumped in Project.toml

Tests

  • ] test runs without errors
  • Unit tests have been added
  • This is a refactoring, no new tests required

Documentation

  • Documentation has been updated
  • No change to public API, documentation not required

korenmiklos and others added 19 commits July 21, 2024 11:56
no tests yet

```julia
julia> df
4×3 DataFrame
 Row │ i      j      x
     │ Int64  Int64  Int64
─────┼─────────────────────
   1 │     1      1      1
   2 │     2      1      2
   3 │     1      2      3
   4 │     2      2      4

julia> @with df @reshape wide x, i(i) j(j)
Kezdi.jl> @reshape_wide x, i(i) j(j)

2×3 DataFrame
 Row │ i      x1      x2
     │ Int64  Int64?  Int64?
─────┼───────────────────────
   1 │     1       1       3
   2 │     2       2       4
 ```
- fixes #182
- new test added
- 405/405 tests pass
- version bumped to 0.5.1
- fixes #182
- new test added
- 405/405 tests pass
- version bumped to 0.5.1
- re #172
- update documentation
- tests added
- 458/458 pass
Copy link

codecov bot commented Nov 13, 2024

Codecov Report

All modified and coverable lines are covered by tests ✅

Files with missing lines Coverage Δ
src/codegen.jl 93.45% <100.00%> (-1.20%) ⬇️
src/commands.jl 96.77% <100.00%> (+1.16%) ⬆️
src/functions.jl 85.93% <100.00%> (-1.57%) ⬇️
src/macros.jl 100.00% <100.00%> (ø)

... and 2 files with indirect coverage changes

@korenmiklos korenmiklos merged commit 9735980 into main Nov 15, 2024
5 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants