
Ultimate access to all questions.
Data scientists aim to utilize the Data Profile features of Databricks within Databricks notebooks. Given a data frame named fixed_price_df, which of the following syntaxes is correct?
A
spark.data().summarize(fixed_price_df)
B
dbutils.data().summarize(df)
C
dbutils.data(fixed_price_df).summarize()
D
dbutils.data(fixed_price_df).summarize
E
dbutils.data.summarize(fixed_price_df)
F
fixed_price_df.summary()