Untitled
unknown
plain_text
3 years ago
261 B
8
Indexable
alpha = 0.05
results = st.ttest_ind(
data_actual.query("genre == 'action' and user_score > 0")['user_score'], \
data_actual.query("genre == 'sports' and user_score > 0")['user_score']
)
print("p-значение: {:.5f}".format(results.pvalue))Editor is loading...