Course Content
Pandas First Steps
How do you create a dataframe?
Select the correct answer
pd.DataFrame({[2, 3, 7] : [1, 5, 6]})
pd.dataFrame({[2, 3, 7] : [1, 5, 6]})
pd.DataFrame({'marks' : [4, 5, 6]})
pd.DataFrame{'marks' : [4, 5, 6]}
Section 1.
Chapter 6