Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -320,7 +320,7 @@ def t_test_data(df):
|
|
320 |
styles = pd.DataFrame('', index=df.index, columns=df.columns)
|
321 |
|
322 |
for i in range(rows-1):
|
323 |
-
p_value = t_test(df['Mean'].iloc[-1,], df['Mean'].iloc[i], df['Frequency'].iloc[-1], df['
|
324 |
if p_value <= 0.05:
|
325 |
styles.iloc[i, :] = 'background-color: lightgreen'
|
326 |
|
|
|
320 |
styles = pd.DataFrame('', index=df.index, columns=df.columns)
|
321 |
|
322 |
for i in range(rows-1):
|
323 |
+
p_value = t_test(df['Mean'].iloc[-1,], df['Mean'].iloc[i], df['Frequency'].iloc[-1], df['Frequency'].iloc[i], df['Variation'].iloc[-1], df['Variation'].iloc[i])
|
324 |
if p_value <= 0.05:
|
325 |
styles.iloc[i, :] = 'background-color: lightgreen'
|
326 |
|