Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@

### Snowpark Python API updates

#### New Features

- Added `DataFrame.to_polars()` to convert a Snowpark DataFrame to a Polars DataFrame or LazyFrame.

#### Improvements

- Removed the `experimental` tag from all AI SQL functions in `DataFrameAIFunctions` (`complete`, `filter`, `agg`, `classify`, `similarity`, `sentiment`, `embed`, `summarize_agg`, `transcribe`, `parse_document`, `extract`, `count_tokens`, `split_text_markdown_header`, `split_text_recursive_character`) and `RelationalGroupedDataFrame.ai_agg`.
Expand Down
1 change: 1 addition & 0 deletions docs/source/snowpark/dataframe.rst
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,7 @@ DataFrame
DataFrame.to_local_iterator
DataFrame.to_pandas
DataFrame.to_pandas_batches
DataFrame.to_polars
DataFrame.to_snowpark_pandas
DataFrame.union
DataFrame.unionAll
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,7 @@
"psutil", # testing for telemetry
"lxml", # used in XML reader unit tests
"pyarrow", # used in dataframe reader tests
"polars>=1.0", # used in test_df_to_polars integration tests
]
MODIN_DEVELOPMENT_REQUIREMENTS = [
# Snowpark pandas 3rd party library testing. Cap the scipy version because
Expand Down
Loading
Loading