-
Notifications
You must be signed in to change notification settings - Fork 29
Description
System Info
- JASP version: 0.95.1
- OS name and version: Windows 10 Version 22H2
- Commit used: jasp-stats/jasp-desktop@180d14c
JASP Module
Other
Is there a specific analysis that caused the crash?
Using the R Console to make a graph
Log files
No log files are available. To get more information, please turn logging on. For this: open the file menu (the blue hamburger button left top), navigate to Advanced Preferences and check the 'Log to file' checkbox.
Debug information: Engine # 0 process does not exist (anymore) and it's state is settings.
Steps to Reproduce
Probably cannot reproduce exactly. I was making a scatterplot through the R Console:
x11(); plot(response~covariate, data)
Then added a curve: (a, b, c are specific numbers)
x <- seq(5, 11, length=201)
lines(x, a+bx+cx^2, col='blue')
Then tried to add a regression line: (agian with actual numbers)
abline(A, B, col='red')
That did not work so instead:
lines(x, A+B*x, col='red')
This worked but turned the console unresponsive. I had two jasp data files open, a handful of analyses for both.