I have a table with more than a thousand rows. A row is an object that has 5 measurements associated with it at each event. An object may appear in multiple rows because of multiple measurements performed at different events, Here is what the table looks like. Alias column is the object name (the 19 objects seen here are unique, i.e, measured only once).
What I need is a table where each row is a unique object. This would entail obtaining the mean of each of the 5 measurements when there are multiple measurements of the same object. I've tried the tabulate function but I could only get the counts, and not any other statistical measurement. If I had been successful, my thought was to make a new table out of the tabulate output.
What is the easiest way to reshape the data?