A snowpark dataframe is a table in Snowflake. So, use `write_pandas()` to write the data in the dataframe back to a Snowflake table, and then you can set that table to be a snowpark dataframe.
– Mike WaltonAug 17 '22 at 00:58
Basically getting snowflake table into Snowpark, dataframe, converting it to pandas to take advantage of the functionality, and once transformed, save it back to snowflake.
– psabelaAug 17 '22 at 01:05
Mike, the write_pandas only works with snowflake connector, and not snowpack library, right?
– psabelaAug 17 '22 at 01:08
2
Snowpark supports `write_pandas`. Proof: https://github.com/snowflakedb/snowpark-python/blob/75beddbedfb49eeca1ac25f88e420bf1c8fb145d/src/snowflake/snowpark/session.py#L970
– Felipe HoffaAug 17 '22 at 04:59