JASP - split by two factors?
How can I split a dataset by two or more factors in JASP? In the descriptive statistics interface, the split field only accepts one variable.
Thank you
How can I split a dataset by two or more factors in JASP? In the descriptive statistics interface, the split field only accepts one variable.
Thank you
Comments
I don't think this is possible at the moment. Maybe a good feature request for our GitHub page...
(https://jasp-stats.org/2018/03/29/request-feature-report-bug-jasp/)
Cheers,
E.J.
If I understood the topic correctly, created a feature request at https://github.com/jasp-stats/jasp-issues/issues/2492 .
What you can do is create a new variable that is the combination of several grouping variable, for example using edit data > insert column using R code:
paste(gender, agegroup, sep="_")This will create a variable that's the combination of a variable called
genderand another calledagegroup, so you can use this single variable as filter/split in descriptives/etc. You can use more than 2 variables by separating with commas.