CASE WHEN SQL Type Statement in pandas
I'm trying to create a new column called Class which is a calculated column. Basically when the Math class is NA then the class will be the CS class, otherwise it will be vice versa.
How can I do this in python? Table name is Classes
MathClass | CSClass | Class
------------------------------
Trig | NA | Trig
NA | Java | Java
NA | Python | Python
Category Data Science