Day 1 Practice Problems
Please Log In for full access to the web site.
Note that this link will take you to an external site (https://petrock.mit.edu) to authenticate, and then you will be redirected back to this page.
Practice the concepts you learned in Day 1
1) Data Science Pipeline
2) Tables
# Perform a projection on groups to retrieve only the list of group names.
# Submit your answer as a python iterable
groups = [
{"gid": 101, "group_name": "Hikers"},
{"gid": 102, "group_name": "Coders"}
]
3) SQL and Pandas
LEFT JOIN on Table A and Table B if a row in Table A has no matching record in Table B?
COUNT(*) and COUNT(column_name)?
iloc indexer compared to the loc indexer?