PFA - Q5

We're almost there. The final step in PFA is to compute the P(m). What is it? (If you don't remember the formula, re-watch the lecture.)




Select one:
A) df['p(m)'] = 1/(1+np.exp(df['m']-1))
B) df['p(m)'] = 1/(np.exp(df['m']*(-1)))
C) df['p(m)'] = 1/(1+np.exp(df['m']*(-1)))
D) df['p(m)'] = 1/(np.exp(df['m'])**(-1))
E) df['p(m)'] = 1/(1+np.exp(df['m']))


Next