If you want to play around with count vectors you can run the code below.
from sklearn.feature_extraction.text import CountVectorizer
cv = CountVectorizer().fit(ml_df['employee_position_title'])
cv.transform(ml_df['employee_position_title']).shape
You can also inspect the vocabulary.
cv.vocabulary_