1# Calculate natural logarithm on 'Salary' column
2data['natural_log'] = np.log(data['Salary'])
3data # Show the dataframe
4# Calculate logarithm to base 2 on 'Salary' column
5data['logarithm_base2'] = np.log2(data['Salary'])
6data # Show the dataframe