QuestionQ70

Ingest and Process Data

Which methods trigger an action that evaluates a DataFrame?

Choose two
Explanation

Snowpark DataFrames are lazily evaluated until an action sends their SQL to the server. DataFrame.collect() evaluates the DataFrame and returns its rows, while DataFrame.show() evaluates it and prints rows. random_split(), select(), and col() only construct derived DataFrame or column expressions.

Learn more

Community Discussion

No comments yet. Be the first to start the discussion!