Names:
I have two CSV files from my CSCI 141 class; one is from the start-of-quarter survey, and one is the final gradebook.
On the start-of-quarter survey (in a dataframe survey),
students reported how many months of programming experience they had.
Some students added the class late, and are not present in the survey
results.
The gradebook (in a DataFrame grades) has all the grades
for the quarter. Some students who dropped the course after the first
week are not included are not included in the gradebook.
Both files have the following columns: * Name (in Last, First format) * W number * Email address
I want to analyze the relationship between programming experience and final grades, so I can run something like
sns.scatter(data=combined, x="Months Experience", y="Final Grade")
How should I construct the combined dataframe that will
enable this?