python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
How to print the sum of int and double in C?
What am I doing wrong here in C, because if I run the following code I get only 0.000000 instead of 20.5?
int testInt= 10;
double testDouble = 10.5;
auto testSum = testInt + testDouble;
printf("...
Codemaster2022
Votes: 0
Answers: 0
How to apply a mixed effect model to my dataset
I have a large dataset but for this analysis I am focusing on three columns that includes (a) the concentration of hormone X (ug/g), (b) body mass (kg) and gender (male/female).
I am just wondering ho...
poxyatr
Votes: 0
Answers: 0
Which R package can I use to visualize mixed effect model coefficient
I am working on mixed effect model using lmer function in R. My response variable is Productivity which is continues variable and I try to find the effect of 5 predictors on productivity(SR, NRI, CWM_...
Gossaye H
Votes: 0
Answers: 1
How can I get the random slope coefficients from the statsmodels mixed effects model in python?
I have the main summary output for my mixed effects model (using statsmodels: smf.mixedlm) and have all the beta coefficients in the summary but I would like to get all the coefficients for the each o...
Sarah
Votes: 0
Answers: 0