Which of the following takes a dict of dicts or a dict of array-like sequences and returns a DataFrame? A. DataFrame.from_items B. DataFrame.from_records C. DataFrame.from_dict D. All of the Mentioned Answer Workspace Report Discuss Answer with explanation Answer: Option A Explanation DataFrame.from_dict operates like the DataFrame constructor except for the orient parameter which is ‘columns’ by default. Workspace
Discuss about the question