I have a pandas dataframe - and one column has airline names (or company names). I want to generate a 'messy' data set by changing a small subset of the names (which are only in one column) to names that are similar but not the same. So United Airlines would become UNITED AIRLINES say. The following is an example of my data set
Description
0 United Airlines
1 Pinnacle Airlines Inc.
2 Ryanair
3 British Airways
Is there anyway to randomly apply changes of stings by row to a Pandas data frame. Does anyone have any ideas?