Open knudsvik opened 4 years ago
np.vectorize(std_step_emerson)(df['v_m'], df['GOR']) raises GOR is not a number exception when df['v_m'] is float and df['GOR'] is int data types. May be related to #63 ?
np.vectorize(std_step_emerson)(df['v_m'], df['GOR'])
GOR is not a number
df['v_m']
df['GOR']
np.vectorize(std_step_emerson)(df['v_m'], df['GOR'])
raisesGOR is not a number
exception whendf['v_m']
is float anddf['GOR']
is int data types. May be related to #63 ?