I have an SFrame with multiple columns like 'measure1','measure2','measure3',..
I'd like to add a new column 'total_measure' with the totals of measure1 + measure2 + measure3 etc.
I thought this would to the job: cdss_analysis.unstack(column=['measure1','measure2'],new_column_name='total_measure')
But that doesn't seem to be correct.