I have a dataset with "Status" as one of its columns. In the status variable, the data is either "Employed" or "Left."
I want to visualize only the "Left" entries of the "Status" column.
Currently, I'm only able to visualize both "Employed" and "Left" using this code:
ggplot(data=employee_data) + geom_point(aes(x=satisfaction, y=last_evaluation, color=status))
If I want to isolate only those in "Left" category, how do I do that?