Let say this in the input CSV file.
I would like to go over the Babys column and change it to increasing number by 1.
Babys
what i did is to
You can use python pandas to increase the column number by n:
pandas
n
import pandas data_df = pandas.read_csv('input.csv') data_df = data_df['age'].apply(lambda x: x+n) print data_df
for adding 1 replace n by 1.
1