Hi,
Is there anyway that I will get the partial eta square for post hoc tests for repeated measures anova.
Search found 14 matches
- Mon Mar 30, 2026 5:29 pm
- Forum: General
- Topic: Partial Eta Square for Post Hoc repeated measures ANOVA
- Replies: 1
- Views: 13408
- Tue Nov 04, 2025 6:03 am
- Forum: Help
- Topic: Auto Recode option
- Replies: 1
- Views: 39702
Auto Recode option
Hi,
I there any option in jamovi that I can use to recode categorical variables automatically like in SPSS instead of using transform option? If there are so many levels and they are not ordered, auto recode is an easy option.
Thanks,
Ramakrishna
I there any option in jamovi that I can use to recode categorical variables automatically like in SPSS instead of using transform option? If there are so many levels and they are not ordered, auto recode is an easy option.
Thanks,
Ramakrishna
- Wed Oct 22, 2025 6:21 am
- Forum: Help
- Topic: Split and Apply
- Replies: 3
- Views: 31519
Re: Split and Apply
I know this method, but I would like to see the combined data in one place. lme4 or nlme got a neat function lmList which achieves exactly this. In future, I would like jamovi should have this capacity to split the data and apply t-test, anova, lm etc and get combined results. I have seen this capab...
- Tue Oct 21, 2025 7:43 am
- Forum: Help
- Topic: Split and Apply
- Replies: 3
- Views: 31519
Split and Apply
Hi, I would like to split my mycars dataset into three subsets based on the cyl variable and apply linear regression on each of these datasets. Is there any way I can do this? Similar R code to achieve this is: models1 = lapply(split(mtcars, mtcars$cyl), \(x)lm(mpg ~ disp, data = x)) tidy_list = lap...
- Tue Oct 14, 2025 4:59 pm
- Forum: Help
- Topic: Creating lag and differen variables
- Replies: 5
- Views: 42970
Re: Creating lag and differen variables
Yes. I got the desired results. But please include these functions lag, lead, diff too in future versions. Followup question, is there any possibility that any one create a time series module based on fpp2 or fpp3?
- Tue Oct 14, 2025 4:18 am
- Forum: Help
- Topic: Creating lag and differen variables
- Replies: 5
- Views: 42970
Re: Creating lag and differen variables
Yes. This is what I need. But Lag, Lead, diff are more used verbs in econometrics.
Lag -> OFFSET(A, 1)
Lead -> OFFSET(A, -1)
diff_1 -> A - OFFSET(A, 1)
diff_2 -> A - OFFSET(A, 2)
Lag -> OFFSET(A, 1)
Lead -> OFFSET(A, -1)
diff_1 -> A - OFFSET(A, 1)
diff_2 -> A - OFFSET(A, 2)
- Mon Oct 13, 2025 7:17 am
- Forum: Help
- Topic: Creating lag and differen variables
- Replies: 5
- Views: 42970
Creating lag and differen variables
Hi,
Is there any function to create lag and first, second, ... difference variables in Jamovi?
Thanks.
Is there any function to create lag and first, second, ... difference variables in Jamovi?
Thanks.
- Fri Oct 03, 2025 12:49 pm
- Forum: Help
- Topic: creating grouped mean variable
- Replies: 1
- Views: 28045
creating grouped mean variable
Hi,
I would like to have a functionality similar to ave in base R to create a grouped mean variable. I have a dataset with a continuous variable x and group. Now I want to create a new variable where all observations in a particular group have the same mean. How to do?
I would like to have a functionality similar to ave in base R to create a grouped mean variable. I have a dataset with a continuous variable x and group. Now I want to create a new variable where all observations in a particular group have the same mean. How to do?
- Thu Oct 02, 2025 8:19 am
- Forum: Help
- Topic: LRT test df difference
- Replies: 0
- Views: 46619
LRT test df difference
Hi, While comparing Config, Metric, Scalar models for MI, I am getting different results while doing manual calculation with constraints score test. Is it comparable with LRT test? Is there any way that jamovi provides a table to compare config vs metric, scalar vs metric using lavTestLRT function o...
- Thu Oct 02, 2025 7:47 am
- Forum: Help
- Topic: Releasing constraints in gamlj
- Replies: 2
- Views: 22740
Re: Releasing constraints in gamlj
For the second question, PIF_3 ~ c(a, b)*1 is working.