Tagged Questions
5
votes
3answers
221 views
grouping objects to achieve a similar mean property for all groups
I have a collection of objects, each of which has a numerical 'weight'. I would like to create groups of these objects such that each group has approximately the same arithmetic mean of object ...
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 ...
2
votes
7answers
122 views
compute mean in python for a generator
I'm doing some statistics work, I have a (large) collection of random numbers to compute the mean of, I'd like to work with generators, because I just need to compute the mean, so I don't need to ...
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
194 views
Calculating arithmetic mean (average) in Python
Is there a built-in or standard library method in Python to calculate the arithmetic mean (average) of a list of numbers?
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 ...
0
votes
2answers
498 views
Weighted average of angles
I want to calculate the weighted mean of a set of angles.
In this Question, there's an answer how to calculate the mean
as shown in this page.
Now I'm trying to figure out how to calculate the ...