Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Raw data not availabl message #951

Open
simone-anza opened this issue Oct 30, 2024 · 2 comments
Open

Raw data not availabl message #951

simone-anza opened this issue Oct 30, 2024 · 2 comments

Comments

@simone-anza
Copy link

Hi,

thank you for developing this tool - versatility is great and I am using it since years! Not sure if it is a new realese thing but I am getting messages that "Raw data not available.". Unfortunatly, I work with data under restrictions and can't publish dataset but this is happening when I code response variable between parenteses - I am just point this out for others

this causes the problem
full = glmmTMB(((my.response)) ~ my.pred1 + my.pred2 + (1|my.random),
family = gaussian(),
na.action = na.exclude,
data = mydata)

this is ok
full = glmmTMB(my.response ~ my.pred1 + my.pred2 + (1|my.random),
family = gaussian(),
na.action = na.exclude,
data = mydata)

@strengejacke
Copy link
Owner

Here's a reprex:

library(ggeffects)
m <- lm((mpg) ~ gear, data = mtcars)
plot(predict_response(m, "gear"))

plot(predict_response(m, "gear"), show_data = TRUE)
#> Raw data not available.

Created on 2024-10-31 with reprex v2.1.1

@strengejacke
Copy link
Owner

Is there a reason why you need to wrap your response variable in parenthesis in the formula?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants