From 4b38da1afd22be365b34c1de1811ae3b43abcf50 Mon Sep 17 00:00:00 2001 From: Karandeep Singh Date: Fri, 4 Aug 2023 08:34:15 -0400 Subject: [PATCH] Add new macros to README and docs --- README.md | 2 ++ docs/src/index.md | 2 ++ 2 files changed, 4 insertions(+) diff --git a/README.md b/README.md index 0f7de2d4..ab4f4faa 100644 --- a/README.md +++ b/README.md @@ -89,8 +89,10 @@ TidierData.jl currently supports the following top-level macros: - `@left_join()`, `@right_join()`, `@inner_join()`, and `@full_join()` - `@bind_rows()` and `@bind_cols()` - `@pivot_wider()` and `@pivot_longer()` +- `@separate()` and `@unite()` - `@drop_na()` - `@clean_names()` (as in R's `janitor::clean_names()` function) +- `@summary()` (as in R's `summary()` function) TidierData.jl also supports the following helper functions: diff --git a/docs/src/index.md b/docs/src/index.md index af6ff619..2e95a8a9 100644 --- a/docs/src/index.md +++ b/docs/src/index.md @@ -101,8 +101,10 @@ TidierData.jl currently supports the following top-level macros: - `@left_join()`, `@right_join()`, `@inner_join()`, and `@full_join()` - `@bind_rows()` and `@bind_cols()` - `@pivot_wider()` and `@pivot_longer()` + - `@separate()` and `@unite()` - `@drop_na()` - `@clean_names()` (as in R's `janitor::clean_names()` function) + - `@summary()` (as in R's `summary()` function) ``` TidierData.jl also supports the following helper functions: