iagogv3
iagogv3
And does the folder open if it contains a space? Have you tried? with "Foos Bar" name? I am getting a similar issue and my hypothesis is the space presence,...
@eggrandio My solution when I have a similar issue is to add the first suffix (`_x`) only in the last join: ```r > df % full_join(z, by = "col1", suffix...
A question related to this issue is how to specify the `suffix` option for multiple joins when they are done through `purrr` function `reduce`?
A question on `pretty_names`. I see they can be used for the `model_parameters` of certain objects/classes, like regressions, while cannot be used with the `model_parameters` of others, like `htest`. Indeed,...
It is interesting that here (https://thestatsgeek.com/2020/12/30/mixed-model-repeated-measures-mmrm-in-stata-sas-and-r/) one can see estimates, SE and CI for Random Effect variances in the Stata output, but how can one get them for `gls` models,...
Sure it is not a bug (I asked for a FR) and it is maybe not explicit on `gls` output. Maybe I understood wrongly the Stata output of the example,...
Maybe the estimates are those in `mmrm$apVar`?
>The model you are reporting from Stata is not a GLS model, but a mixed effects model. The `gls` model accomplishes the function of adapting the Stata model. I quote...
The `gls` model in the example is using the option `correlation=nlme::corSymm(form=~time | id)` and it seems (https://stats.idre.ucla.edu/r/seminars/repeated-measures-analysis-with-r/) that *Option “corr = corSymm” specifies that the correlation structure is unstructured*. Then,...
I fully agree. And it is usual that other software produce outputs that R does not, and that there are good reasons for that. I asked for those values because...