You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
in validObject(.Object) :
ungültiges Objekt der Klasse “dsparseModelMatrix”: superclass "xMatrix" not defined in the environment of the object's class
To Reproduce
This is the code to reproduce the issue:
library(report)
library(readxl)
library(BayesFactor)
library(bayestestR)
library(httr)
# URL of the Excel fileurl<-"https://raw.githubusercontent.com/M-Colley/3d-display-comp-vehicle/main/3d-comp-vehicle-main.xlsx"# Use GET to access the file and save the content to a temporary filetemp_file<- tempfile(fileext=".xlsx")
download.file(url, temp_file, mode="wb")
# Use read_excel to read the filemain_df<- read_excel(temp_file)
# View the data
head(main_df)
# Optionally, delete the temporary file if no longer needed
unlink(temp_file)
main_df<- as.data.frame(main_df)
main_df$UserID<- as.factor(main_df$UserID)
main_df$ConditionID<- as.factor(main_df$ConditionID)
# this is the issueBayesFactor::anovaBF(TLX1~ConditionID+UserID, data=main_df, whichRandom="UserID") |> bayesfactor_models() |> report()
Specifications (please complete the following information):
All packages are up to date:
Analyses were conducted using the R Statistical language (version 4.3.2; R Core Team, 2023) on Windows 11 x64 (build 22631)
effectsize (version 0.8.6; Ben-Shachar MS et al., 2020)
easystats (version 0.7.0; Lüdecke D et al., 2022)
see (version 0.8.1; Lüdecke D et al., 2021)
insight (version 0.19.7; Lüdecke D et al., 2019)
bayestestR (version 0.13.1; Makowski D et al., 2019)
modelbased (version 0.8.6; Makowski D et al., 2020)
Describe the bug
in validObject(.Object) :
ungültiges Objekt der Klasse “dsparseModelMatrix”: superclass "xMatrix" not defined in the environment of the object's class
To Reproduce
This is the code to reproduce the issue:
Expected behaviour
I would have expected
report
to be able to report this (see https://easystats.github.io/report/reference/report.bayesfactor_models.html). This had already worked in previous versions. (Unofrtunately, i cannot state which change in packages caused this break)Specifications (please complete the following information):
Analyses were conducted using the R Statistical language (version 4.3.2; R Core Team, 2023) on Windows 11 x64 (build 22631)
The text was updated successfully, but these errors were encountered: