
is a critical psychological thriller movie based on the true-life account of a young American student named Sandra who is lured into the world of NXIVM (a secret sorority founded byQ:
Pandas: Apply function to column
I have a dataframe with 5 columns. I want to add column and apply min() to one column.
df['new_column']=df.col1+df.col2+df.col3+df.col4+df.col5
df['new_column'].min()
But there is an error.
AttributeError: 'DataFrame' object has no attribute'min'
A:
In [50]: df.loc[:,'new_column']=df['col1']+df['col2']+df['col3']+df['col4']+df['col5']
In [51]: df.loc[:,'new_column'].min()
Out[51]:
col1 col2 col3 col4 col5 new_column
0 2 1 1 2 1 3
1 3 0 1 0 0 3
2 4 2 0 0 0 3
3 5 0 1 0 0 3
4 7 2 be359ba680
Related links:
Comments