Search found 194 matches

by Ravi
Tue Apr 19, 2022 11:42 am
Forum: General
Topic: Moderation Medmod
Replies: 2
Views: 1113

Re: Moderation Medmod

Hi Anne,
Yes this is indeed because all variables are centered before the analysis is run, see https://github.com/raviselker/medmod/blob/6f81b0fa009a97cf11c808f7ee561097e7c1310a/R/mod.b.R#L198-L201.

Cheers,
Ravi
by Ravi
Mon Feb 07, 2022 8:57 am
Forum: Statistics
Topic: Post hoc testing after two-way ANOVA
Replies: 6
Views: 5896

Re: Post hoc testing after two-way ANOVA

Yeah, I started it a while ago but never finished it for some reason (See, https://github.com/raviselker/manytee). But in this module, all comparisons are done and you cannot just select the ones you are interested in.
by Ravi
Sat Feb 05, 2022 7:35 am
Forum: General
Topic: is Partial Correlation working?
Replies: 8
Views: 5061

Re: is Partial Correlation working?

Yeah, the partial correlation calculates the correlation between the variables in the "Variables" box, with the variance from the variables in the "Control Variables" (semi) partialled out. So you'd always have to add at least two variables to the "Variables" box. I'm c...
by Ravi
Tue Jan 04, 2022 2:51 pm
Forum: jamovi development
Topic: Exploratory Factor Analysis
Replies: 5
Views: 5326

Re: Exploratory Factor Analysis

I created a PR that implements factor scores for EFA, see https://github.com/jamovi/jmv/pull/330
by Ravi
Tue Oct 19, 2021 8:45 am
Forum: Statistics
Topic: RM-ANOVA Post-Hoc T-Test SE is Wrong, no longer pooled
Replies: 1
Views: 5225

Re: RM-ANOVA Post-Hoc T-Test SE is Wrong, no longer pooled

Hi, Earlier this year we changed the way we calculate the estimated marginal means (on which the post-hoc tests are based) as per recommendation of the author of the package we use to estimate the RM ANOVA: https://cran.r-project.org/web/packages/afex/vignettes/afex_anova_example.html. It now uses a...
by Ravi
Tue Oct 12, 2021 11:43 am
Forum: Help
Topic: Nan/INF Errors in (3*2) ANOVA
Replies: 10
Views: 19312

Re: Nan/INF Errors in (3*2) ANOVA

Hi, Earlier this year we changed the way we calculate the estimated marginal means (on which the post-hoc tests are based) as per recommendation of the author of the package we use to estimate the RM ANOVA: https://cran.r-project.org/web/packages/afex/vignettes/afex_anova_example.html. It now uses a...
by Ravi
Tue Sep 28, 2021 8:26 pm
Forum: General
Topic: Scale development questions - EFA and reliability
Replies: 1
Views: 4752

Re: Scale development questions - EFA and reliability

Hi Emma,
At the moment the question to all your questions is "no", but you can always make a feature request on our github page: https://github.com/jamovi/jamovi

Cheers,
Ravi
by Ravi
Tue Sep 21, 2021 8:38 am
Forum: Statistics
Topic: Matrix in EFA
Replies: 1
Views: 15452

Re: Matrix in EFA

Hi! The EFA uses a pearson correlation matrix indeed, and there's no way to use a polychoric correlation matrix at the moment. We use the psych R package to compute the EFA results, and I'm not sure it's possible to use a polychoric correlation in the function provided in that package.
by Ravi
Tue Sep 14, 2021 9:47 am
Forum: Help
Topic: infinite or missing value in 'X' ERROR
Replies: 9
Views: 23303

Re: infinite or missing value in 'X' ERROR

Hi, Yeah, the problem (in the example data) is that you have 805 completely missing cases at the bottom of your spreadsheet, and the default full information maximum likelihood (FIML) estimator cannot handle this properly. So you can either delete/filter out these cases (as I assume they are include...
by Ravi
Tue Sep 07, 2021 12:26 pm
Forum: Module development
Topic: theme colors
Replies: 6
Views: 15128

Re: theme colors

The name of the palette is also accessible through theme$palette which you can pass on to the jmvcore::colorPalette function as follows (where n is the number of colors you want, and type whether you want the fill or color palette): jmvcore::colorPalette(n=2, theme$palette, type="fill")