Search found 15 matches

by BeginnerA
Sun Mar 12, 2023 10:35 pm
Forum: Statistics
Topic: Propensity score matching
Replies: 1
Views: 1516

Re: Propensity score matching

https://dspace.mit.edu/handle/1721.1/128459
by BeginnerA
Wed Feb 15, 2023 7:29 am
Forum: Help
Topic: A beginner's question for descriptive statistics
Replies: 3
Views: 612

Re: A beginner's question for descriptive statistics

I think violin or boxplots would be more appropriate in your case
by BeginnerA
Tue Jan 10, 2023 11:06 pm
Forum: Statistics
Topic: Generalized Linear Mixed Model
Replies: 1
Views: 947

Re: Generalized Linear Mixed Model

This may help
https://www2.karlin.mff.cuni.cz/~pesta/NMFM404/glmm.html#Interpretation
by BeginnerA
Wed Nov 02, 2022 11:00 am
Forum: Help
Topic: Need PSM in jamovi
Replies: 1
Views: 1752

Re: Need PSM in jamovi

It seams to be not available currently in Jamovi.
You can try doing it using R-based StatsNotebook or simply using R directly..
https://statsnotebook.io/blog/analysis/matching/
by BeginnerA
Mon Oct 24, 2022 11:49 pm
Forum: Help
Topic: Show Linear Regression Equation
Replies: 2
Views: 864

Re: Show Linear Regression Equation

This was produced by Flexplot module in jamovi. You may contact developpers for equation or you can add it as text..
Image
by BeginnerA
Thu Oct 06, 2022 9:49 pm
Forum: Help
Topic: how to interpret log-linear regression?
Replies: 1
Views: 7514

Rules for interpretation

from https://data.library.virginia.edu/interpreting-log-transformations-in-a-linear-model/ Only the dependent/response variable is log-transformed. Exponentiate the coefficient, subtract one from this number, and multiply by 100. This gives the percent increase (or decrease) in the response for ever...
by BeginnerA
Tue Oct 04, 2022 1:28 pm
Forum: Module development
Topic: How to run generalized linear mixed models by GAMLj?
Replies: 1
Views: 15167

How to run generalized linear mixed models by GAMLj?

Hello everyone
My question : Is the example here
https://gamlj.github.io/mixed_example2.html
the same as "generalized linear mixed models" ?

If not, how to run GLMM using gamlj?
Thanks again for your time
by BeginnerA
Tue Oct 04, 2022 1:17 pm
Forum: Statistics
Topic: Logistic Regression
Replies: 3
Views: 11274

Re: Logistic Regression

Thank you

I tried it and here is the output:

Output:

Code: Select all

MLE of lambda Score Statistic (z) Pr(>|z|)    
age        -15.61                 1.2      0.2    
bwt          0.49                 3.4    6e-04 ***
---
Signif. codes:  0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1

iterations =  22
by BeginnerA
Wed Sep 28, 2022 8:36 pm
Forum: Statistics
Topic: Logistic Regression
Replies: 3
Views: 11274

Re: Logistic Regression

Based on this page, https://search.r-project.org/CRAN/refmans/jmv/html/logRegBin.html I think it may be something like this code: data('birthwt', package='MASS') dat <- data.frame( low = factor(birthwt$low), age = birthwt$age, bwt = birthwt$bwt) jmv::logRegBin (data = dat, dep = low, covs = vars(age...