Conversation
Merge 010616
Adding request for scipy module to be added.
|
Hi, thanks for PR. Sadly, codebox build fails after your update ( |
|
@kenceanderson I'll discuss with my team possibility of installing SciPy in codebox next week. |
|
Thank you. My apologies for not knowing this and brining this up. After doing some research, I believe that this Stack Overflow thread regards, On Thu, Jan 7, 2016 at 6:34 AM, Zhe Brah [email protected] wrote:
|
|
@kenceanderson no worries and good news - we're installing numpy and scipy this week. |
|
Hello, I just wanted to check and see if there is still a plan to install Scipy regards, On Mon, Jan 11, 2016 at 3:55 AM, Zhe Brah [email protected] wrote:
|
|
Hey Kence, We added both on Jan 13th. I just tried some code from this tutorial and it seems to work fine: import numpy as np
from scipy.spatial.distance import pdist, squareform
a = np.array([[1,2,3,4], [5,6,7,8], [9,10,11,12]])
b = a[:2, 1:3]
print "{a} \n --- \n {b}".format(a=a, b=b)
x = np.array([[0, 1], [1, 0], [2, 0]])
d = squareform(pdist(x, 'euclidean'))
print dDo these two modules not work properly for you? |
Added SciPy Module to requirements.txt