Associate-Developer-Apache-Spark-3.5試験無料問題集「Databricks Certified Associate Developer for Apache Spark 3.5 - Python 認定」
A data engineer needs to persist a file-based data source to a specific location. However, by default, Spark writes to the warehouse directory (e.g., /user/hive/warehouse). To override this, the engineer must explicitly define the file path.
Which line of code ensures the data is saved to a specific location?
Options:
Which line of code ensures the data is saved to a specific location?
Options:
正解:D
解答を投票する
解説: (GoShiken メンバーにのみ表示されます)
Given the code fragment:

import pyspark.pandas as ps
psdf = ps.DataFrame({'col1': [1, 2], 'col2': [3, 4]})
Which method is used to convert a Pandas API on Spark DataFrame (pyspark.pandas.DataFrame) into a standard PySpark DataFrame (pyspark.sql.DataFrame)?

import pyspark.pandas as ps
psdf = ps.DataFrame({'col1': [1, 2], 'col2': [3, 4]})
Which method is used to convert a Pandas API on Spark DataFrame (pyspark.pandas.DataFrame) into a standard PySpark DataFrame (pyspark.sql.DataFrame)?
正解:C
解答を投票する
解説: (GoShiken メンバーにのみ表示されます)