Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions .claude/CLAUDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -231,3 +231,13 @@ After `runAnalysis()`, check:
- Use `createJaspTable()`, `createJaspPlot()`, `createJaspHtml()` for output elements
- Always set `$dependOn()` for proper caching and state management
- Use containers for grouping related elements, state objects for reusing computed results

## Compact Instructions

When context is compacted, preserve:
- Current workflow stage (from /workspace/.openclaw-run/current_stage)
- Implementation plan (from /workspace/.openclaw-run/PLAN.md)
- The module name and original task description
- What git changes have been made so far

After compaction, re-read /workspace/.openclaw-run/RECOVERY.md to re-orient.
4 changes: 3 additions & 1 deletion R/doeFactorial.R
Original file line number Diff line number Diff line change
Expand Up @@ -355,7 +355,9 @@ doeFactorial <- function(jaspResults, dataset, options, ...) {
seed = seed
)
} else if (options[["factorialType"]] == "factorialTypeSpecify") {
whichHow <- strsplit(gsub(" ", "", strsplit(options[["factorialTypeSpecifyGenerators"]], ",")[[1]], fixed = TRUE), "=")
# Normalize different delimiters (semicolon, newline, tab) to comma before parsing
generators_normalized <- gsub("[;\n\t]", ",", options[["factorialTypeSpecifyGenerators"]])
whichHow <- strsplit(gsub(" ", "", strsplit(generators_normalized, ",")[[1]], fixed = TRUE), "=")
if (length(whichHow) == 0) {
return()
}
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
253 changes: 253 additions & 0 deletions tests/testthat/_snaps/msaType1Gauge/1-bias-histogram.new.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
247 changes: 247 additions & 0 deletions tests/testthat/_snaps/msaType1Gauge/2-bias-histogram.new.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
248 changes: 248 additions & 0 deletions tests/testthat/_snaps/msaType1Gauge/3-bias-histogram.new.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
176 changes: 176 additions & 0 deletions tests/testthat/_snaps/msaType1Gauge/4-bias-histogram.new.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading