Talk:Welch's t-test: Difference between revisions

Line 1,285:
 
I've installed numpy and scipy, but if I run only the top 3 lines (importing) I get the error as well.--[[User:Hailholyghost|Hailholyghost]] ([[User talk:Hailholyghost|talk]]) 18:18, 16 March 2018 (UTC)
 
Running the short script you mentioned above, with just numpy, produces the following:
 
<lang bash>
con@con-vb:~/Scripts$ python numpy.py
Traceback (most recent call last):
File "numpy.py", line 1, in <module>
import numpy as np
File "/home/con/Scripts/numpy.py", line 2, in <module>
a = np.array([1,2,3],dtype=float)
AttributeError: 'module' object has no attribute 'array'
</bash>--~~~~