-
What does Pandas stand for*? A. Python Data Analysis System B. Portable Data Access System C. Personalized Data Access System D. Panel Data Analytics System
-
How do we read in a csv file using Pandas?* A. pd.read_csv B. CSV.read_csv C. csv.pd_reader D. df.load_csv
-
What type of object does Pandas use for data manipulation?* A. List B. Set C. Dictionary D. DataFrame
-
How do we select the first 5 rows of a dataframe?* A. df.head() B. df.head(5) C. df.tail() D. df.tail(5)
-
How can we apply the mean function to an entire dataframe?* A. df.mean() B. df.sum() C. df.max() D. df.min()
-
What is the default data type for the dataframe?* A. List B. Set C. Dictionary D. Object
-
How do we rename the column of a dataframe?* A. df.column.rename B. df.update C. df.columns = {…} D. df.rename(columns = {…})
-
How do we sort the rows of a dataframe based on a column?* A. df.sort() B. df.sort_by() C. df.order_by() D. df.sort_values(by = Column Name)
-
How do we select values in a dataframe based on a certain condition?* A. df[condition] B. df.select(condition) C. df.filter(condition) D. df.where(condition)
-
How do we access the size of a dataframe?* A. df.size B. df.length C. df.sizes D. df.shape
Loading...