Tagged Questions
4
votes
5answers
2k views
How to use numpy with 'None' value in python?
i'm a pretty new user of python and numpy, so i hope my question won't annoy you.
Well, i'd like to calculate the mean of an array in python in this form :
Matrice = [1, 2, None]
I'd just like to ...
2
votes
1answer
178 views
Performing many means in numpy
Good Morning,
I am implimenting a Cressman filter for doing distance weighted averages in Numpy.. I use a Ball Tree implimentation (thanks to Jake VanderPlas) to return a list of locatations for each ...
1
vote
1answer
173 views
scipy stats geometric mean returns NaN
I am using scipy's gmean() function to determine the geometric mean of a numpy array that contains voltage outputs. The range of the numbers is between -80.0 and 30.0. Currently, the numpy array is ...
0
votes
1answer
205 views
calculating means of many matrices in numpy
I have many csv files which each contain roughly identical matrices. Each matrix is 11 columns by either 5 or 6 rows. The columns are variables and the rows are test conditions. Some of the ...