jmv::describe() library crashes rstudio windows 10 x64

General help and assistance with jamovi. Bug reports can be made at our issues page: https://github.com/jamovi/jamovi/issues . (If you're unsure feel free to discuss it here)
Post Reply
balbuluz
Posts: 3
Joined: Tue Jun 21, 2022 4:41 pm

jmv::describe() library crashes rstudio windows 10 x64

Post by balbuluz »

If I call jmv::describe() RStudio crashes
R session aborted
R encountered a fatal error
The session was terminated
All my libraries are up to date.
R version 4.2.0 (2022-04-22 ucrt) -- "Vigorous Calisthenics"
RStudio 2022.02.3+492 "Prairie Trillium" Release (1db809b8323ba0a87c148d16eb84efe39a8e7785, 2022-05-20) for Windows
Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) QtWebEngine/5.12.8 Chrome/69.0.3497.128 Safari/537.36
loaded libraries
library(tidyverse) # Funktionen für moderne Datenmanipulation und Plotting
library(jmv) # jamovi library
library(scatr) # scatter plot like in jamovi
library(knitr)
library(kableExtra)

Sys.info()
sysname release version nodename machine
"Windows" "10 x64" "build 19043" "DESKTOP-4H82T2F" "x86- 64"
User avatar
jonathon
Posts: 2613
Joined: Fri Jan 27, 2017 10:04 am

Re: jmv::describe() library crashes rstudio windows 10 x64

Post by jonathon »

i don't think there is a describe() function in jmv. could you double check, and provide a reproducible example?

with thanks
balbuluz
Posts: 3
Joined: Tue Jun 21, 2022 4:41 pm

Re: jmv::describe() library crashes rstudio windows 10 x64

Post by balbuluz »

Sorry for the wrong function description. Here an example, that crashes my RStudio session.

Thanks for your help.

```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = TRUE)

library(jmv)
library(tidyverse)

# Sys.info()
# Sys.getenv()
```

```{r}
df <- tibble(x = rnorm(100))
summary(df)

jmv::descriptives(
data = df,
vars = x
)
```
User avatar
jonathon
Posts: 2613
Joined: Fri Jan 27, 2017 10:04 am

Re: jmv::describe() library crashes rstudio windows 10 x64

Post by jonathon »

i've created an issue here:

https://github.com/jamovi/jamovi/issues/1218

jmv itself doesn't contain any native code, so i suspect the fault lies somewhere else, but we should be able to work around it.

cheers
balbuluz
Posts: 3
Joined: Tue Jun 21, 2022 4:41 pm

Re: jmv::describe() library crashes rstudio windows 10 x64

Post by balbuluz »

Thanks
Post Reply