Skip to content

Commit

Permalink
Updated readme
Browse files Browse the repository at this point in the history
  • Loading branch information
edurdevic committed Sep 29, 2023
1 parent c099849 commit 83fa061
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ The available `dx` functions are
* `from_tables("<catalog>.<schema>.<table>")` 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
Expand All @@ -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

Expand Down

0 comments on commit 83fa061

Please sign in to comment.