Git Product home page Git Product logo

Comments (2)

markfairbanks avatar markfairbanks commented on July 19, 2024 1

@leungi

FYI - mutate_across.() & summarize_across.() now have a .names arg in the development version of tidytable. If you run into any issues let me know.

The column naming conventions also now match the dplyr implementation.

The new column naming is a breaking change for:

  • mutate_across.(): Only when passing an unnamed list to .fns
  • summarize_across.(): All uses

Here's an example of how summarize_across.() has changed:

pacman::p_load(tidytable)

test_df <- data.table(a = 1:3, b = 4:6, z = c("a", "a", "b"))

# Old version
test_df %>%
  summarize_across.(c(a, b), list(mean, max))
#>    z fn1_a fn1_b fn2_a fn2_b
#> 1: a   2     5     3     6

# New version: Auto-created names now match dplyr
test_df %>%
  summarize_across.(c(a, b), list(mean, max))
#>    a_1 b_1 a_2 b_2
#> 1:   2   5   3   6

# Using .names
test_df %>%
  summarize_across.(c(a, b), list(avg = mean, max = max), .names = "{col}_{fn}_test")
#>    a_avg_test b_avg_test a_max_test b_max_test
#> 1:          2          5          3          6

from tidytable.

leungi avatar leungi commented on July 19, 2024

@markfairbanks : appreciate your work as always, and thanks for always keeping in mind when implementing these changes!

from tidytable.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.