Pandas and Data Manipulation Flashcards
1
Q
When do we use parentheses during data analysis?
A
Whenever we have a function or method that is ready to take one or multiple arguments
2
Q
What are at least 4 ways we use brackets during data analysis?
A
-We want to perform indexing in a list
-We want to slice a list or dataframe, or a numpy array
-We want to filter a dataframe(isolating columns)
-We want to specify items in a list
3
Q
A