79541151

Date: 2025-03-28 10:21:13
Score: 1
Natty:
Report link

We can use across(everything()) in reframe.

my_data |> 
  rowwise() |> 
  reframe(across(everything()))
# A tibble: 4 × 3
     C1    C2    C3
  <dbl> <dbl> <dbl>
1     1     5     9
2     2     6    10
3     3     7    11
4     4     8    12
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: BhavinVala