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
At the moment we have functions stored in files like:
generics.R
defaults.R
These were related to S3 methods.
I think that we should reorganise so that functions are grouped together by functionality rather than by if they are generics or methods. So I'd advocate for moving these out into files like:
formula.R
family.R
fit.R
To some extent this has already started to happen (for example there is already family.R).
An auxiliary goal of this is that if we want to add a new model or a new family for an existing model it should be one new script.
As a part of this issue the function groupings on the pkgdown also needs to change.
The text was updated successfully, but these errors were encountered:
* Move fitting functions into fit
* Create stancode.R
* Create validate.R
* Remove defaults.R and generics.R and pkgdown groups
* Document
* Don't need this line
* Standardise providing ... argument to generics
* Remove whitespace
* Fix R CMD CHECK warning
* Return NULL by default for stancode
* Add test of Stan code NULL case
* Add test for stanvars class
At the moment we have functions stored in files like:
generics.R
defaults.R
These were related to S3 methods.
I think that we should reorganise so that functions are grouped together by functionality rather than by if they are generics or methods. So I'd advocate for moving these out into files like:
formula.R
family.R
fit.R
To some extent this has already started to happen (for example there is already
family.R
).An auxiliary goal of this is that if we want to add a new model or a new family for an existing model it should be one new script.
As a part of this issue the function groupings on the
pkgdown
also needs to change.The text was updated successfully, but these errors were encountered: