From 83fa06104a61fa814955d5b0bf37ba2d61d3ec6c Mon Sep 17 00:00:00 2001 From: Erni Durdevic Date: Fri, 29 Sep 2023 14:05:13 +0200 Subject: [PATCH] Updated readme --- README.md | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 68d4b3f..4a343ff 100644 --- a/README.md +++ b/README.md @@ -59,7 +59,7 @@ The available `dx` functions are * `from_tables("..")` selects tables based on the specified pattern (use `*` as a wildcard). Returns a `DataExplorer` object with methods * `having_columns` restricts the selection to tables that have the specified columns * `with_concurrency` defines how many queries are executed concurrently (10 by defailt) - * `apply_sql` applies a SQL template to all tables. After this command you can apply an [action](#from_tables-actions). See in-depth documentation [here](docs/Arbitrary_multi-table_SQL.md). + * `with_sql` applies a SQL template to all tables. After this command you can apply an [action](#from_tables-actions). See in-depth documentation [here](docs/Arbitrary_multi-table_SQL.md). * `unpivot_string_columns` returns a melted (unpivoted) dataframe with all string columns from the selected tables. After this command you can apply an [action](#from_tables-actions) * `scan` (experimental) scans the lakehouse with regex expressions defined by the rules and to power the semantic classification. * `intro` gives an introduction to the library @@ -72,12 +72,11 @@ The available `dx` functions are ### from_tables Actions -After a `apply_sql` or `unpivot_string_columns` command, you can apply the following actions: +After a `with_sql` or `unpivot_string_columns` command, you can apply the following actions: * `explain` explains the queries that would be executed -* `execute` executes the queries and shows the result in a unioned dataframe -* `to_union_dataframe` unions all the dataframes that result from the queries - +* `display` executes the queries and shows the result in a unioned dataframe +* `apply` returns a unioned dataframe with the result from the queries ## Requirements