mirror of
https://github.com/CartoDB/crankshaft.git
synced 2024-11-01 10:20:48 +08:00
add types to arrays
This commit is contained in:
parent
42e760b5d1
commit
c5a58f97ec
@ -140,9 +140,9 @@ def get_prob_stats(prob_dist, unit_indices):
|
||||
"""
|
||||
|
||||
num_elements = len(prob_dist)
|
||||
trend_up = np.empty(num_elements)
|
||||
trend_down = np.empty(num_elements)
|
||||
trend = np.empty(num_elements)
|
||||
trend_up = np.empty(num_elements, dtype=float)
|
||||
trend_down = np.empty(num_elements, dtype=float)
|
||||
trend = np.empty(num_elements, dtype=float)
|
||||
|
||||
for i in range(num_elements):
|
||||
trend_up[i] = prob_dist[i, (unit_indices[i]+1):].sum()
|
||||
|
Loading…
Reference in New Issue
Block a user