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 #198

Merged
merged 10 commits into from
Nov 7, 2024
Merged

Reshape #198

merged 10 commits into from
Nov 7, 2024

Conversation

gergelyattilakiss
Copy link
Collaborator

Summary

Pull reshape into the official development branch

korenmiklos and others added 10 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 7, 2024

Codecov Report

Attention: Patch coverage is 81.81818% with 4 lines in your changes missing coverage. Please review.

Files with missing lines Patch % Lines
src/commands.jl 87.50% 2 Missing ⚠️
src/macros.jl 66.66% 2 Missing ⚠️
Files with missing lines Coverage Δ
src/commands.jl 94.64% <87.50%> (-1.20%) ⬇️
src/macros.jl 96.77% <66.66%> (-3.23%) ⬇️

... and 1 file with indirect coverage changes

@gergelyattilakiss gergelyattilakiss merged commit 2408e2e into 0.5-dev Nov 7, 2024
5 of 6 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