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

Commits on Jul 21, 2024

  1. implement reshape wide (#172)

    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
     ```
    korenmiklos committed Jul 21, 2024
    Configuration menu
    Copy the full SHA
    6119a75 View commit details
    Browse the repository at this point in the history

Commits on Jul 26, 2024

  1. bugfix: double vectorization in replace

    - fixes #182
    - new test added
    - 405/405 tests pass
    - version bumped to 0.5.1
    korenmiklos committed Jul 26, 2024
    Configuration menu
    Copy the full SHA
    a79bc3a View commit details
    Browse the repository at this point in the history
  2. bugfix: double vectorization in replace

    - fixes #182
    - new test added
    - 405/405 tests pass
    - version bumped to 0.5.1
    korenmiklos committed Jul 26, 2024
    Configuration menu
    Copy the full SHA
    c07d23b View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    81baab6 View commit details
    Browse the repository at this point in the history

Commits on Jul 29, 2024

  1. Configuration menu
    Copy the full SHA
    98641b3 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    ec1b71b View commit details
    Browse the repository at this point in the history

Commits on Jul 30, 2024

  1. Add tests for reshape wide (#172)

    - 451/451 pass
    korenmiklos committed Jul 30, 2024
    Configuration menu
    Copy the full SHA
    4d0fc3b View commit details
    Browse the repository at this point in the history
  2. Implement multiple i() variables in @reshape wide

    - re #172
    - update documentation
    - tests added
    - 458/458 pass
    korenmiklos committed Jul 30, 2024
    Configuration menu
    Copy the full SHA
    eb68c23 View commit details
    Browse the repository at this point in the history

Commits on Nov 7, 2024

  1. Configuration menu
    Copy the full SHA
    d6d5710 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    ac881ff View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    2408e2e View commit details
    Browse the repository at this point in the history

Commits on Nov 8, 2024

  1. Configuration menu
    Copy the full SHA
    eb638a1 View commit details
    Browse the repository at this point in the history

Commits on Nov 12, 2024

  1. Configuration menu
    Copy the full SHA
    643a672 View commit details
    Browse the repository at this point in the history

Commits on Nov 13, 2024

  1. Configuration menu
    Copy the full SHA
    e2845d3 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    0b9cc37 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    fc286ce View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    cfd447b View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    ec53817 View commit details
    Browse the repository at this point in the history