Search found 18 matches

by srk80
Mon Aug 03, 2026 5:58 am
Forum: Help
Topic: R Editor showing less rows
Replies: 2
Views: 2169

Re: R Editor showing less rows

As this functionality is an important one, can you integrate this option in jamovi instead of using R? It is really helpful and avoids the use of native R.
by srk80
Sat Aug 01, 2026 6:52 am
Forum: Help
Topic: R Editor showing less rows
Replies: 2
Views: 2169

R Editor showing less rows

I am trying to find the unique combinations of origin and dest in R editor. However, the output is not showing the rows number. This is the expected output.

# Find all unique origin and destination pairs
flights |>
distinct(origin, dest)
#> # A tibble: 224 × 2
#> origin dest
#> <chr> <chr>
#> 1 ...
by srk80
Fri Jul 31, 2026 10:09 am
Forum: Help
Topic: How to find unique rows in a dataset
Replies: 3
Views: 3509

Re: How to find unique rows in a dataset

This is a nice hack. But I would like to know the number of rows in this frequency table. Further, is there anyway to export the table as a jamovi data like jtransform export to a new file?
by srk80
Wed Jul 29, 2026 5:58 pm
Forum: Help
Topic: How to find unique rows in a dataset
Replies: 3
Views: 3509

How to find unique rows in a dataset

Hi, I am working with flights dataset which is very popular in Hadley Wikham book. I want to find unique origin and destinations. is there anyway we can do it?
by srk80
Mon Mar 30, 2026 5:29 pm
Forum: General
Topic: Partial Eta Square for Post Hoc repeated measures ANOVA
Replies: 1
Views: 24174

Partial Eta Square for Post Hoc repeated measures ANOVA

Hi,

Is there anyway that I will get the partial eta square for post hoc tests for repeated measures anova.
by srk80
Tue Nov 04, 2025 6:03 am
Forum: Help
Topic: Auto Recode option
Replies: 1
Views: 54842

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
by srk80
Wed Oct 22, 2025 6:21 am
Forum: Help
Topic: Split and Apply
Replies: 3
Views: 41214

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 ...
by srk80
Tue Oct 21, 2025 7:43 am
Forum: Help
Topic: Split and Apply
Replies: 3
Views: 41214

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 ...
by srk80
Tue Oct 14, 2025 4:59 pm
Forum: Help
Topic: Creating lag and differen variables
Replies: 5
Views: 53038

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?
by srk80
Tue Oct 14, 2025 4:18 am
Forum: Help
Topic: Creating lag and differen variables
Replies: 5
Views: 53038

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)