I am attempting to build a python program using Pandas that takes any organization of data and converts it into a standard format. This program also takes two columns of data and replaces that data with a specific code according what data is contained within each column. However, this seems to be working fine with small files, but the replace function does not work at all with larger files and does not give me an error message either. What could be going wrong here. Here is some sample code:
data.columnheadder.replace("1|Generic input", "101", regex=True, inplace=True)