Easy question here: I am creating a new data frame based on a report of contracts where I only want 2 statuses. I have the first one, but am having trouble adding the second condition.
df2 = df[(df['[PCW] Contract Status'] == "Draft")]
The other status is "Draft Amendment". So I basically want it to read like
df2 = df[(df['[PCW] Contract Status'] == "Draft", "Draft Amendment")]