I have looked at the aggregate data questions on this forum and elsewhere - but I don't quite see an answer that helps me but that may be non-understanding on my behalf.I apologize. I have a huge amount of raw data test findings and I want to aggregate certain scores into one mean score. I can do this by creating a new variable in compute > transform but I cannot do this for 330+ by adding it 1 + 2 + 3 all by hand. My question is: How can I aggregate hundreds of scores and calculate a new mean score as a new variable in a quick and intelligent fashion that so far eludes me? For example, I have 339 latency measures for 50 participants. I want to calculate ONE overall latency score as a new variable. Thanks! I am desperate for direction.
相关问题
- How to groupby two fields in pandas?
- how to perform sum and count on dataframe in R
- Multiple indexing with multiple idxmin() and idmax
- Applying an aggregate function over multiple diffe
- Product Aggregate in PostgreSQL
相关文章
- mongodb-aggregate聚合查询分组后如何获得多字段
- How to filter rows for a specific aggregate with s
- book count per author for filtered book list in dj
- How do I export a SQL query into SPSS?
- Python - Aggregate by month and calculate average
- R - Specifying a desired row order for the output
- Feasibility of getting Maven aggregator pom to inj
- Aggregating table() over multiple columns in R wit
If your variables are contiguous in the file you can use the
SUM
command usingTO
to specify the variables in simple syntax.