Skip to content

Commit

Permalink
Add space around in regression syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
maltelueken committed Oct 17, 2023
1 parent cf5f840 commit 1063685
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/classicProcess.R
Original file line number Diff line number Diff line change
Expand Up @@ -751,7 +751,7 @@ procModelGraphSingleModel <- function(modelOptions, globalDependent, options) {
igraph::E(graph)[.to(e)]$source,
sep = "*", collapse = " + "
)
return(paste(e, rhs, sep = "~"))
return(paste(e, rhs, sep = " ~ "))
})
return(paste(regLines, collapse = "\n"))
}
Expand Down

0 comments on commit 1063685

Please sign in to comment.