Re: Untitled

From Gray Frog, 7 Months ago, written in Plain Text, viewed 193 times. This paste is a reply to Untitled from Mature Parakeet - go back
URL http://codebin.org/view/4f30c1fb/diff Embed
Viewing differences between Untitled and Re: Untitled
sub_time = data_sub['duration'].sample(n = 100)
no_sub_time = data_no_sub['duration'].sample(n = 100)
display(sub_time.mean())
display(no_sub_time.mean())

alpha = 0.05

results = st.ttest_ind(sub_time, no_sub_time)

print('p-????????:', results.pvalue/2)

pvalue)

if results.pvalue < alpha:
    print('????????? ??????? ????????')
else:
    print('?? ?????????? ?????????? ??????? ????????')

Reply to "Re: Untitled"

Here you can reply to the paste above