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

Open
wants to merge 18 commits into
base: main
Choose a base branch
from
Open

Reshape #199

wants to merge 18 commits into from

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 18 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/commands.jl 96.77% <100.00%> (+0.94%) ⬆️
src/functions.jl 85.93% <100.00%> (ø)
src/macros.jl 100.00% <100.00%> (ø)

... and 1 file with indirect coverage changes

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