General utilities supported APIs

The following table is structured as follows: The first column contains the method name. The second column is a flag for whether or not there is an implementation in Snowpark for the method in the left column.

Note

Y stands for yes, i.e., supports distributed implementation, N stands for no and API simply errors out, P stands for partial (meaning some parameters may not be supported yet), and D stands for defaults to single node pandas execution via UDF/Sproc.

Data manipulations

Method

Snowpark implemented? (Y/N/P/D)

Missing parameters

Notes for current implementation

concat

P

levels is not supported, copy is ignored

crosstab

N

cut

P

retbins, labels

N if retbins=True``or ``labels!=False

factorize

N

from_dummies

N

get_dummies

P

sparse is ignored

Y if params dummy_na, drop_first and dtype are default, otherwise N

lreshape

N

melt

P

col_level, ignore_index

N if df.columns is a MultiIndex

merge

P

validate

N if param validate is given

merge_asof

N

merge_ordered

N

pivot

N

pivot_table

P

observed, margins, sort

N if index, columns, or values is not str; or MultiIndex; or any argfunc is not “count”, “mean”, “min”, “max”, or “sum”

qcut

P

N if labels!=False or retbins=True.

read_csv

P

engine, converters, true_values, false_values, skipfooter, skipinitialspace, nrows, keep_default_na, na_filter, date_parser, parse_dates, verbose, infer_datetime_format, date_format, keep_date_col, dayfirst, cache_dates, iterator, chunksize, thousands, decimal, lineterminator, quoting, doublequote, comment, encoding_errors, dialect, on_bad_lines, low_memory, delim_whitespace, memory_map, float_precision, storage_options, dtype_backend

Reads both local and staged file(s) into a Snowpark pandas DataFrame. Note, the order of rows in the may differ from the order of rows in the original file(s).

Supported parameters are sep, header, names, index_col, usecols, dtype, compression, na_values, escapechar, skiprows, encoding, quotechar, and skip_blanks_lines.

read_json

P

orient, typ, dtype, convert_axes, lines, convert_dates, date_unit, keep_default_dates, encoding_errors, nrows, and chunksize will raise an error. precise_float, engine, dtype_backend, and storage_options are ignored.

P: - if ndjson files are passed - Supported parameters are compression and encoding

read_parquet

P

use_nullable_dtypes, filesystem, and filters will raise an error if used. engine, storage_options, dtype_backend, and **kwargs are ignored.

Supported parameter(s) are: columns

read_snowflake

Y

Reading from tables as well as SELECT SQL Queries supported, but ordering is not guaranteed for SQL Queries that contain ORDER BY clauses. More complex queries, including CTEs and CTEs with anonymous stored procedures are also supported. Obtaining results from stored procedures is also supported via CALL queries.

read_table

N

to_pandas

Y

to_snowflake

Y

**kwargs are currently ignored

to_snowpark

Y

Convert the Snowpark pandas DataFrame or Series to a Snowpark DataFrame. Once converted to a Snowpark DataFrame, no ordering information will be preserved.

unique

Y

wide_to_long

N

Top-level dealing with missing data

Method

Snowpark implemented? (Y/N/P/D)

Notes for current implementation

isna

Y

isnull

Y

notna

Y

notnull

Y

Top-level dealing with numeric data

Method

Snowpark implemented? (Y/N/P/D)

Missing parameters

Notes for current implementation

to_numeric

P

downcast is ignored

N if error == "ignore"

Top-level dealing with datetime-like data

Method

Snowpark implemented? (Y/N/P/D)

Missing parameters

Notes for current implementation

bdate_range

N

date_range

P

tz

N for business or custom frequencies

infer_freq

N

period_range

N

timedelta_range

N

to_datetime

P

cache is ignored

N: - if format is None or not supported in Snowflake - or if params exact, infer_datetime_format is given - or origin == "julian" - or error == "ignore" - or arg is DataFrame and data type is not int - or arg is Series and data type is string

to_timedelta

N

Top-level dealing with Interval data

Method

Snowpark implemented? (Y/N/P/D)

Notes for current implementation

interval_range

N

Top-level evaluation

Method

Snowpark implemented? (Y/N/P/D)

Notes for current implementation

eval

N

Datetime formats

Method

Snowpark implemented? (Y/N/P/D)

Notes for current implementation

tseries.api.guess_datetime_format

N

Hashing

Method

Snowpark implemented? (Y/N/P/D)

Notes for current implementation

util.hash_array

N

util.hash_pandas_object

N

Importing from other DataFrame libraries

Method

Snowpark implemented? (Y/N/P/D)

Notes for current implementation

api.interchange.from_dataframe

N